I need to the 'Tick' Icon on power apps Green, from its native Blue when the Value of the Status box is 'Complete'
I currently have 4x options in my Status box:
Pending
Submit
Action Required
Complete
I have the Visibility of this icon set to true if values 'Submit' or 'Complete' are selected using the following:
If(ThisItem.Status.Value="Submit" Or "Complete",true,false)
However, I'm struggling to get the icon to change colour depending on which of the two values is selected, so need help with the following:
If Status Value = "Submit", colour should be RGBA(0, 18, 107, 1)
If Status Vale = "Complete" Colour should be RGBA(99, 139, 44, 1)
Many thanks