Hello,
I am attempting to add a label that would only show if a data card in my form viewer was set to "HS Approved".
I have tried ...
If(Gallery1_6.Selected),(DataCardValue16_1.Selected.Value = "HS Approved", true, false)
&
If((DataCardValue16_1.Selected.Value = "HS Approved"), true, false)
&
If((DataCardValue16_1.Text = "HS Approved"), true, false)
&
If(Value(DataCardValue16_1.Text) = " HS Approved", true, false)
& about a million variations of this but I cannot seem to get it to work. I have several labels set with a visibility if statement throughout my app but for some reason I am having trouble setting this one based on the info in the form viewer, any help would be appreciated!