Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to use the below calculation (to obtain a percentage). I am geting the nested aggregation error. Is there another way to format this calculation so that I can avoid this?
=COUNT((PGS_BFOngoing)+COUNT(PGS_NewOpen)-count(PGS_ActivePrg)-count(PGS_ActiveRes))/((COUNT(PGS_BFOngoing) + COUNT(PGS_NewOpen))
Thank you
Hi, I believe you want to sum some counts (not count counts as you doing now). How about just like this:
(COUNT(PGS_BFOngoing) + COUNT(PGS_NewOpen) - COUNT(PGS_ActivePrg) - COUNT(PGS_ActiveRes)) / (COUNT(PGS_BFOngoing) + COUNT(PGS_NewOpen))
Hi, I believe you want to sum some counts (not count counts as you doing now). How about just like this:
(COUNT(PGS_BFOngoing) + COUNT(PGS_NewOpen) - COUNT(PGS_ActivePrg) - COUNT(PGS_ActiveRes)) / (COUNT(PGS_BFOngoing) + COUNT(PGS_NewOpen))
Thank you - Perfect! You are correct and this works.