Hi,
Thanks for your help so far.
I have another question.
I have two checkboxes - YesCheck and NoCheck
When YesCheck is selected I need NoCheck to be disabled and vice versa.
I was trying to use the solution similar to this post
but that wasn't working,
thanks again for your help
Jon
Solved! Go to Solution.
Hey @Anonymous
Hey @Anonymous
@Anonymous
You can try this as mentioned by @yashag2255 :
If(NoCheckbox.Value, DisplayMode.Disabled, DisplayMode.Edit)
If(YesCheckbox.Value, DisplayMode.Disabled, DisplayMode.Edit)
The above means that if YesCheckBox has a value, NoCheckbox will be disabled - if YesCheckBox does not have a value, then NoCheckbox will be in the Edit mode (i.e. enabled)
@Anonymous
User | Count |
---|---|
185 | |
122 | |
91 | |
47 | |
42 |
User | Count |
---|---|
271 | |
158 | |
130 | |
85 | |
78 |