Hello all,
I have a custom canvas app that uses forms from a sharepoint list. I am trying to build in some validation. In my equipment inspection form the user will select many dropdown boxes that have a choice of either "pass" or "fail". When trying to use if(datacardvalue.selected.value = "fail", true) set on visible on my test label I can not get it to work. If do this with an input dropdown box outside of a form I can make it work. Any help would be appreciated.
Label - Visible - If(Dropdown1.Selected.Value = "906", true) this works and my label displays
Label - Visible - If(DataCardValue37.Selected.Value = "906", true) this does not work