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?
Hi Brooke,
In Studio, you can make the checkbox field Dependent on another field. If you choose "Dependent", the formula box "Visible If" appears and you can use the following formula, as an example:
equal($status,"Held")
The field name is $field_name and you can define the value you want it to be in quotations. Hope this helps!
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.
That message may be appearing due to the browser cache. Trying clearing that to and then try updating your fields again.