
I'm displaying a gallery of data from a sharepoint list for audit purposes and I want the blank fields to be "highlighted"/fill a color to draw attention to what needs to be entered.
In the example below the "Location" text has a value in the list but the "SIM Card" section from the list is empty. I'd like to highlight/fill the SIM section to draw attention to it needing to be entered.
Hi @BKICK,
You could use a condition in the Fill property of that label:
If(
IsBlank(ThisItem.'SIM Card'),
Color.Red,
Color.Transparent
)
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!