I have a gallery, i want to highlight a row based on a condition.
According to this site, I should use the TemplateFill field.
i am doing that, but not getting the condition to catch.
There is Queue Status, and then another field called cases, that is determiend by adding fields from a SPO List.
So the queu status looks like
ThisItem.EngineerQueueStatus.Value
And the cases:
ThisItem.'Crits Assigned' + ThisItem.'Non-Crits Assigned' + ThisItem.'POCs Assigned' + ThisItem.'SIEs Assigned'
I need to combine these two. So an If one is available and the other is zero, highlight the row.
here is what I am trying to use, but keep either getting an error or nothing happens.
Gallery TemplateFill
f(ThisItem.EngineerQueueStatus.Value = "Available" & (ThisItem.'Crits Assigned' + ThisItem.'Non-Crits Assigned' + ThisItem.'POCs Assigned' + ThisItem.'SIEs Assigned' = 0),Color.Yellow,Color.Transparent)