Hey,
I have a, hopefully simple, question.
Im just getting into Power Apps, so im not that familiar with the program.
Im trying to make something like an inventory list. So i'd like to add a different picture to every segment.
But unfortunately im not able to get access to the 2nd, 3rd... picture.
And if i change the picture in the first segment, then every other picture is changed too.
Also im trying to figure out how its possible to change the color of something when the title gets changed.
So "Verfügbar", which means available, should be displayed in green and "Nicht vorhanden", which means not available should be displayed in red.
Sorry if its a "stupid" question, but as i said - im kinda new to this.
Greetings
Rene
Solved! Go to Solution.
(I had to edit the post because I kept getting errors about HTML with my original post)
For the image question: I've successfully done this by creating a list on SharePoint with two columns (Title, and ImageURL), here's how I did that:
For the color question: Select the top item in the gallery and set the Fill property of the item to something like this:
Switch(ThisItem.Title,
"Verfügbar", RGBA(152, 208, 70, 1),
""Nicht vorhanden"", RGBA(255, 0, 0, 1))
(I had to edit the post because I kept getting errors about HTML with my original post)
For the image question: I've successfully done this by creating a list on SharePoint with two columns (Title, and ImageURL), here's how I did that:
For the color question: Select the top item in the gallery and set the Fill property of the item to something like this:
Switch(ThisItem.Title,
"Verfügbar", RGBA(152, 208, 70, 1),
""Nicht vorhanden"", RGBA(255, 0, 0, 1))
Tried it and it works now!
Thanks!
User | Count |
---|---|
197 | |
124 | |
86 | |
49 | |
42 |
User | Count |
---|---|
284 | |
159 | |
138 | |
75 | |
72 |