Hi All
I am trying to get a label that shows a count of the items based on the SP table, and I wanted to change color depending on a number and higher (1 and over). Please advise if this is possible and how to accomplish it. I'm able to do this using the switch function and it works if I am specific with the number but trying to do it for example 1 and over it won't work.
Switch( TextInput3_5.Text,"0",ColorValue("#00a604"),">1",ColorValue("#fe2e34"))
Solved! Go to Solution.
Hi @ReyOrtiz ,
The Switch() statement needs an actual value - this should work
If(
TextInput3_5.Text="0",
ColorValue("#00a604"),
ColorValue("#fe2e34")
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @ReyOrtiz ,
The Switch() statement needs an actual value - this should work
If(
TextInput3_5.Text="0",
ColorValue("#00a604"),
ColorValue("#fe2e34")
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
It worked like a charm perfect thank you so much.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
170 | |
94 | |
64 | |
63 | |
60 |
User | Count |
---|---|
243 | |
163 | |
94 | |
84 | |
82 |