INGROUP
Checks whether the current user belongs to a specific user group.
caution
This function is used only in permission-related expressions such as cell locking, cell visibility, and record visibility.
See Cell level Locking & Hiding: Permissions
Syntax
INGROUP(groupName)
Arguments
groupName: The name of the user group to check.
Returns
trueif the current user belongs to the groupfalseotherwise
Examples
INGROUP("Sales") → true if the user is in the Sales group
INGROUP("HR") → false if the user is not in HR
Used in cell locking:
Locked For: INGROUP("Sales")
This locks the cell for all users in the Sales group.