I have added a checkbox to a meeting main page and want the check box to only appear when a specific meeting type is chosen. How can I do this?
I have added a checkbox to a meeting main page and want the check box to only appear when a specific meeting type is chosen. How can I do this?
How would I set it up to only be visible when selecting from a drop down list. we have 8 different meeting types and only want this check box to appear when 4 of the type are used
You can instead use the isinList() formula and list out the dropdown values you want, for example:
isInList($status,createList("Held","Planned"))
createList() formula would hold the different options you want to triggers its visibility.
You can instead use the isinList() formula and list out the dropdown values you want, for example:
isInList($status,createList("Held","Planned"))
createList() formula would hold the different options you want to triggers its visibility.