Skip to main content
Question

Good day, can someone please share with me the formula that is used in the PI Social to calculate the KPI "Users per case"

  • April 12, 2024
  • 5 replies
  • 15 views

denise.kruge12
Level 7
Forum|alt.badge.img+15
Good day, can someone please share with me the formula that is used in the PI Social to calculate the KPI "Users per case"

5 replies

dennis.pflug
Level 10

Hi Denise,

 

this can be done like this:

 

AVG(PU_COUNT_DISTINCT(CASE_TABLE, ACTIVITY_TABLE."USER_NAME"))

 

In case you would like to only count Dialog Users and your use case is based on SAP you can add a filter like this:

AVG(PU_COUNT_DISTINCT(CASE_TABLE, ACTIVITY_TABLE."USER_NAME", ACTIVITY_TABLE."USER_TYPE" = 'A'))

 

BR

Dennis


denise.kruge12
Level 7
Forum|alt.badge.img+15

Thank you Dennis, it works.


denise.kruge12
Level 7
Forum|alt.badge.img+15

@dennis.pflug if I use this formula in a graph to trend against time (monthly), does the formula stay the same? I do that and then if I filter on a specific month then the KPI and the graph value differs.

 

I am using the formula with the filter ACTIVITY_TABLE."USER_TYPE" = 'A'


denise.kruge12
Level 7
Forum|alt.badge.img+15

I solved it, I had to use a PU_FIRST in my time formula. The KPI and the graph is now the same.

 


dennis.pflug
Level 10

Great :)

Good to hear that the logic is now working for you