Hi all,
I am trying to create a check box that can be selected in order to highlight an item that needs to be re-ordered. So far I have created the checkbox and in the "advanced" section set "OnCheck" to true
The formula in the desied text section has been set to...
If(Checkbox1=true,Color.Red,Black)
However it is marking the = sign as incorrect
What am I doing wrong?
Thanks in advance
Solved! Go to Solution.
You need to compare the Value property of the checkbox:
If(Checkbox1.Value=true,Color.Red,Color.Black)
Or simply:
If(Checkbox1.Value, Color.Red, Color.Black)
You need to compare the Value property of the checkbox:
If(Checkbox1.Value=true,Color.Red,Color.Black)
Or simply:
If(Checkbox1.Value, Color.Red, Color.Black)
Thanks Carlos that worked perfectly.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
195 | |
52 | |
41 | |
39 | |
35 |
User | Count |
---|---|
261 | |
80 | |
71 | |
69 | |
66 |