Hi All,
I have a Choice column in Dataverse (5 Status) which I would like to conditional format in Power apps based on the value
I have made a button in a canvas app and set the text property to
Text(ThisItem.'5 Status')
and set the Fill property of the button to
If(
ThisItem.5 Status.Value="Passed",
Green,
ThisItem.5 Status.Value="Failed",
DarkRed,
ThisItem.5 Status.Value="In-Progress",
GoldenRod,
ThisItem.5 Status.Value="Not Started",
Gray
)
However I keep getting a 'Scope' error and 'Text' error?
Any help appreciated