Hi.
I have an app to keep track on what has been done during a project. In the gallery view i have an overview of all the items that have to be done.
I want to make all the checkmark "true" & "false" different colors.
true = green
false = red
I am guessing that i need an "if(ThisItem.******" something in the color field on each Label, but i cannot seem to get it working.
Can anyone help me with this? This is the overview, if you need more information let me know.
BR.
Morten
Solved! Go to Solution.
Have you tried something like the following as the expression for the Color:
If(ThisItem.*****, RGBA(0,255,0,1), RGBA(255,0,0,1))
Have you tried something like the following as the expression for the Color:
If(ThisItem.*****, RGBA(0,255,0,1), RGBA(255,0,0,1))
Thank you dlannoye.
It now works perfectly.