Please Log in or Create an account to join the conversation.
No such usage exists. If you need to match multiple values you need to use a REGEX operator and use REGEX to match for the value. Example as follows.'Actor' OR 'Dancer' OR 'Vocalist' OR 'Mime'
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Single checkboxes store 1 for yes and 0 for no. It's best to check if the value is equal to 1 or not equal to 1 to see if it's checked or not.if condition some field in relation to single check box what operator better to use 'not empty' (if checked) or 'equal to' Yes, since unchecked value is No
A checkbox is never truly empty I believe so hiding empty checkboxes won't work using that feature, but you could hide them using CB Conditional if their value isn't 1 (checked).Also i have set configuration not to show empty fields on profile, but all unchecked check box fields showing up with value No against field name. add condition not show on profile view if field value = No?
If you need to match 1 value of a multi select type field (multi checkbox, multi dropdown, etc..) then use either of the Contains operators.with multi select check box - which operator better to match one of the values - contain or equal to?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.