I am wanting the below code to make said datacard only visible if 1 of these 3 locations are selected. Currently it only makes visible 'Headquarters', I assume because it's the first one listed. How can I write this, so it is visible when any of these are selected?
If(DataCardValue96.Selected.Value="Headquarters", true ,"Solutions", true ,"Southwoods", true )
DataCardValue96.Selected.Value="Headquarters" ||
DataCardValue96.Selected.Value="Solutions" ||
DataCardValue96.Selected.Value="Southwoods"
If(Or(DataCardValue96.Selected.Value="Headquarters",DataCardValue96.Selected.Value="Solutions",DataCardValue96.Selected.Value="Southwoods"), true , false )
Stay up to date on forum activity by subscribing.
stampcoin
58
DS-11051211-0
20
HumanOnly
6