
Announcements
Hi All,
For some reason I cannot get this to work. I have a dropdown which shows pass or fail values. I also have a label that shows a score.
I want a warning box to appear if the user selects pass in the dropdown, but the score is 1 or above which will warn the user that this cannot be a pass.
I was trying to use something like this:
If(Value(DataCardValue307.Selected.Value)="Pass" & (DataCardValue357.Text)>=1,true,false)I just can't seem to get the right combination...
Any advice?
If(DataCardValue307.Selected.Value="Pass" && Value(DataCardValue357.Text)>=1,true,false)