I have a report which displays all the payroll checks that the employees received this week. I want to know the count of employess I have on this report, and not the number of checks received
when I write
=Count([EmpId])
I get the number of checks, I would like to get the number of (like DISTINCT in SQL) employees, even though one of them got 3 checks.
How can this be done?
when I write
=Count([EmpId])
I get the number of checks, I would like to get the number of (like DISTINCT in SQL) employees, even though one of them got 3 checks.
How can this be done?