Hello,
I am trying to set the visibility property of some fields based on what is selected from multi-select checkboxes.
I have three checkboxes lets call them:
Checkbox 1
Checkbox 2
Checkbox 3
a collection holds the value of what was chosen from the checkboxes.
For my example, I will use one field called TestField.
TestField - if checkbox1 is true, true
TestField - if checkbox2 is true, false
TestField - if checkbox3 is true, false
TestField - if checkbox1 and checkbox2 is true, false
TestField - if checkbox2 and checkbox3 is true, false
TestField - if checkbox1 and checkbox3 is true, false
TestField1 - if checkbox2 is true, true
TestField1 - if checkbox1 is true, false
TestField1 - if checkbox3 is true, false
TestField1 - if checkbox1 and checkbox2 is true, false
TestField1 - if checkbox2 and checkbox3 is true, false
TestField1 - if checkbox1 and checkbox3 is true, false
TestField2 - if checkbox3 is true, true
TestField2 - if checkbox1 is true, false
TestField2 - if checkbox2 is true, false
TestField2 - if checkbox1 and checkbox2 is true, false
TestField2 - if checkbox2 and checkbox3 is true, false
TestField2 - if checkbox1 and checkbox3 is true, false
TestField3 - if checkbox1 and checkbox2 is true, true
TestField3 - if checkbox2 and checkbox3 is true, false
TestField3 - if checkbox1 and checkbox3 is true, false
TestField4 - if checkbox2 and checkbox3 is true, true
TestField4 - if checkbox1 and checkbox2 is true, false
TestField4 - if checkbox1 and checkbox3 is true, false
I've tried many variations of If, then else and cant seem to figure it out.
Any direction to get me on the right path is appreciated.