- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:06 AM
I have two True/False fields on a form/table. Only one or the other should be checked, never both. What's the best way to go about implementing that?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:10 AM
For the two True/False fields use UI Policy to achieve that.
Implementation:
Two true/false fields: A and B
ui policy condition:
A is True/false(ui policy condition)
then UI policy actions:
make B visible : false;
Thanks and Regards
Sai Venkatesh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:08 AM
@JamesLindsay The best way is to use a UI Policy to address this requirement.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:10 AM
For the two True/False fields use UI Policy to achieve that.
Implementation:
Two true/false fields: A and B
ui policy condition:
A is True/false(ui policy condition)
then UI policy actions:
make B visible : false;
Thanks and Regards
Sai Venkatesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:10 AM
UI policy is best for your use case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 11:11 AM
You can use UI Policy
Make the second question visibility false, if the question 1 is answered with either true or false. same with the second question, if answered make the question 1 visibility false.