
Announcements
I have three status multiselect filters (Submitted, Archived, In Progress) using a checkbox (chkBoxStatus) in a gallery(galStatus). What I want to happen is if I only click Submitted, it will fill the checkbox background fill of the Submitted checkbox to green, and the checkbox background fill of the Archived and In Progress will be white. This also applies to the Archived and In Progress, but it will be different colors (Archived for Blue and Yellow for In Progress). How to achieve this?
My current code in the CheckboxBackgroundFill property of the check box(chkBoxStatus) is:
If(Self.Value,Green,White)
And my current code in the Text property of the check box(chkBoxStatus) is:
ThisItem.Value
The Items property of my gallery(galStatus) is:
Choices('Project Request'.'Project Request Status')