how do i create a search to show ONLY those with O...
# general
o
how do i create a search to show ONLY those with ONLY employee center role?
o
1. Employee search > Criteria > Role is Employee Center. 2. Setup > Users/Roles > Manager Users > Filter to the role 3. On the role > Users subtab (this is to view only)
d
โ˜๏ธ this would show users with at least the employee center role. to create a search for users with only the employee role you'll need to use a summary search with a summary criteria. something like:
CASE WHEN {role} != 'Employee Center' THEN 1  END
(formula(numeric) SUM equal to 0)
and of course being a summary search, make sure you summarise the result columns (in this case GROUP by item)
o
ah yes, i missed the โ€˜onlyโ€™ ๐Ÿ˜‰
๐Ÿ‘ 1