What is the best way to create multiple actions within one command on "Visible" for a datacard? Basically, if an end-user chooses one of the three options in a previously selected drop-down field, I want my free field text box to appear.
At the moment, I have If(DataCardValue1.Selected.Value="Reviewed",true,false)
But now I've added in two other fields "Reviewed - Complete" and "Reviewed - Pending Additional Information" in the previous drop down. When I separate the commands with a semi-colon, it doesn't work and my free field text box doesn't appear. This is the new code I'm using...
If(DataCardValue1.Selected.Value="Reviewed - Complete",true,false);
If(DataCardValue1.Selected.Value="Reviewed - Pending Additional Information",true,false)
TIA for any help!