SOLVED

ICON VISIBILITY

Contributor

Good Day Community,

Have an icon that needs to be visible if two conditions are met in the gallery.

The below code does "not" show any errors in the formula bar, only on the gallery item.

If(ThisItem.Division = "Sales" && ThisItem.Days > 145, true, false)

chudson002_0-1639769908954.png

Recommendations?

V/R

chudson002

 

2 Replies
best response confirmed by chudson002 (Contributor)
Solution
Figured it out, just needed to switch.
If(ThisItem.Days > 145 && ThisItem.Division.Value = "Sales", true, false)
I don’t think it is the order. It rather is the „.value“ for ThisItem.Division which makes the difference