Equinox Online Help - Language Reference - A to Z

Home

CurrentRecordGroup

Applies to
SyntaxCurrentRecordGroup
Action[Function] Returns the ESS record group number of the current record.
ScopeUsable anywhere
Notes

This function returns the ESS record group number of the current record.

CategoryUser, groups and ESS
See Also ChangeRecordGroup, CurrentRecordGroup, FieldPermissions, FirstUserGroup, FirstUserName, UserCreate, NextUserGroup, NextUserName, RecordPermissions, SetUserGroup, ShowRecordGroup, UserAccountExpiry, UserDelete, UserDetails, UserGroup, UserName, UserPasswordExpiry, UserPermission
Example

This method (attached to the On Each Record event) adds 10% to the salary of all employees in record group 1.

if CurrentRecordGroup = 1 then
salary = salary * 1.1
end if