0
edits
Changes
→To Include Multiple Conditions
'''Note:''' remember to include the @fieldname@ in single quotes.
===To Include Multiple Conditions===It is also possible to test multiple conditions:* For an '''OR''' condition use two pipes (|)
* For an '''AND''' condition use two ampersands (&)
'@status@' = 'Closed' && '@me.fullname@''='John Doe'
''The above field will be visible only if the status of the record is ''Closed'' AND the user viewing the record is named ''John Doe''.''
* You can also use a combination of these using brackets:
'@status@' = 'Closed' && (‘@me.fullname@’='John Doe' || '@me.fullname@'='John Deer' || '@me.fullname@'='Dear John')
''The above field will be visible only if the status of the record is ''Closed'' AND the user is one of the 3 named users.''
==See Also==