Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to set up a KPI to count the people that match a certain criteria but an getting an error in expression. Is there a way to get this into a KPI?
Error message: "Nested Aggregation not allowed"
=Count(distinct IF(MAX(NFILE_DATE)='$(=max(NFILE_DATE))'), Emp_num)
Try this:
=Count(distinct {<NFILE_DATE={"$(=max(NFILE_DATE))"}>} Emp_num)
Try this:
=Count(distinct {<NFILE_DATE={"$(=max(NFILE_DATE))"}>} Emp_num)
That worked, thanks!