Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone - I've got an issue with the pivot table below when trying to calculate the total number of cases and the total number of 'open' cases. As you can see in the screen shot I have the proper values for the total number of cases. MY issue is with counting the 'OPEN' cases. Can someone tell me what I'm doing wrong in this formula, or if there is a better method to use?? Thanks!!
IF(CASE_STATUS='Open',Aggr(DISTINCT, CASE_NUMBER))
Try this for open cases:
Count(DISTINCT {<CASE_STATUS = {'Open'}>}CASE_NUMBER)
UPDATE: forgot to add the DISTINCT
Try this for open cases:
Count(DISTINCT {<CASE_STATUS = {'Open'}>}CASE_NUMBER)
UPDATE: forgot to add the DISTINCT
Thank you!! Worked perfectly!! Now I understand what I did wrong!