I am looking for a little guidance with a Sharepoint list. I created a form with a dropdown list named Reason Code with 13 options. I am trying to make a text box named Comment visible when any of the Selections are made. I got it to work with one Selection by using
If(DataCardValue11.Selected.Value = "Training",true,false), but I need to make it visible with any Selection.
I've tried
If(DataCardValue11.Selected.Value = ("Training", "Other"),true,false) with parenthesis and brackets. Neither worked.
Any help would be appreciated. I have attached 2 screen shots. One with the "Comment" box closed (default). One with the "Comment" box open due to "Training" being selected.