Hello,
Can someone help me out here?
I'm creating a label for a count of employees per supervisor. If the supervisor has 3 employees, I want the label to read "/3", if the supervisor has 2 employees, label should read "/2", etc.
Supervisor_Employee_Table:
supervisor_num employee_num
---------------- | ----------------
123 XYZ
123 ABC
123 JKL
890 DEF
890 GHI
Function:
If(
CountRows(
Distinct(
Supervisor_Employee_Table,
employee_num)) <= 2,
"/2","/3")
Thanks for the insights.

Report
All responses (
Answers (