Skip to main content

Is it possible, that I create an OLAP table or a histogramm, that categorizes by, lets say 5 different amounts of attributes, and sums the number of cases that belong to one of those categories?

Here is an example:

Case 1 has Attribute A

Case 2 has Attribute A

Case 3 has Attribute B

Case 4 has Attribute C

Case 5 has Attribute D

Case 6 has Attribute E

Case 7 has Attribute E

Case 8 has Attribute E

Case 9 has Attribute E

Case 10 has Attribute E

 

 

-> My table should show:

 

No. of same Attribute Case Count

5 /// 5 --------------(cases 6,7,8,9,10)

2 /// 2 --------------(cases 1,2)

1 /// 3 --------------(cases 3,4,5)

 

 

 

I only want to display the Case Count per No. of same Attributes. Furthermore I want to filter on for example all the cases that have the same amount of attributes.

 

 

Would that somehow be possible to Create such a table or histogram within Celonis?

 

Best regards

Hi Tobias,

 

I may have misunderstood your question, but are you suggesting something like this

 

image 

Where count for Case 1 would be 30, Case 2 would be 30 and Case 3 would be 10....

 

Here is what you would do for the same situation, take a dimension as

 

CASE WHEN COMPANY IN ('ABC','BCD') THEN ''CASE 1'

WHEN COMPANY IN ('CDE','DEF') THEN ''CASE 2'

WHEN COMPANY IN ('EFG') THEN ''CASE 3' END

 

and take KPI as

 

COUNT_TABLE(CASE).

 

 

Hope this helps !

 


Dear Abhishek,

 

thank you first of all for your help. I create just a new example which will hopefully visualise my Problem more:

 

imageLets say I have a process and the upper table shows me first of all how often a Company is connected to cases. It shows the case count per company.

 

Then i want a second table, that show me per case count how many different companys are connected to this specific case count.

e.g.: Case Count "10" is valid for 2 different companies (ABC and EFG).

Case Count "20" is valid for 1 company (BCD).

Case Count "30" is valid for 1 company (CDE).

Case Count "40" is valid for 2 companies (DEF and HIJ).

 

 

I know how to create the first table.

Can you help me creating the second table? Is it even possible in Celonis?

 

Best regards

 


Hi Tobias,

 

a little bit late maybe but you define it exactly how you described it in your last example table.

 

For the dimension:

PU_COUNT("Company", "CASE"."CASE_ID")

 

For the KPI:

COUNT("Company"."ID")

 

Best regards,

Florian


Reply