Hello,
I have a "choice" datacard value field that has three options. The selectable choices are as follows:
No
Standard Depth/Velocity Confirmation
Full Velocity Profile (Flow >5in / 12.7cm)
I am trying to get a portion of my form to visible if EITHER "Standard Depth/Velocity Confirmation" OR "Full Velocity Profile (Flow >5in / 12.7cm)" is selected.
I am having trouble getting this functionality. So far I have tried the following:
If((DataCardValue36.Selected.Value = "Standard Depth/Velocity Confirmation") && (DataCardValue36.Selected.Value = Full Velocity Profile (Flow >5in / 12.7cm)), true, false)
This results in the portion of the form not being visible at all and does not change for either option. Am I doing something obvious wrong? Thanks for any help in advance.