Forum Discussion
chudson002
Dec 17, 2021Brass Contributor
ICON VISIBILITY
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)
Recommendations?
V/R
chudson002
- Figured it out, just needed to switch.
If(ThisItem.Days > 145 && ThisItem.Division.Value = "Sales", true, false)
- chudson002Brass ContributorFigured it out, just needed to switch.
If(ThisItem.Days > 145 && ThisItem.Division.Value = "Sales", true, false)- reinerknudsenCopper ContributorI don’t think it is the order. It rather is the „.value“ for ThisItem.Division which makes the difference