Hi, new to this and have built an App, which uses Sharepoint Lists as data sources. I'm using a gallery & have successfully included Template Fill on selected item.
If(ThisItem.IsSelected, ColorFade(LightBlue,.5);
I also have a status column in the SPL which shows items as either "Active" or "Expired" I would like to indicate the selected Items, which have the "Expired" status in red when selected. Despite several (way too many to confess) attempts I've been unsuccessful in either joining the 1st If statement or adding an additional statement to do this......
Any assistance would be much appreciated
Your If statement should look like this:
If(
ThisItem.Status = "Expired", Red,
ThisItem.IsSelected, ColorFade(LightBlue,.5)
)