For instance, ... 5 WO's have 3 Distinct Claim ID's, 7 WO's have 2 Distinct Claim ID's, and 125 WO's have 1 Claim ID.
Thank you ... I am sure this is simple, but I can't find how to do it.
For instance, ... 5 WO's have 3 Distinct Claim ID's, 7 WO's have 2 Distinct Claim ID's, and 125 WO's have 1 Claim ID.
Thank you ... I am sure this is simple, but I can't find how to do it.
Best answer by Sverre Klein
Oh ... this results in a KPI.
What I need is a table (that I can click into and would filter on) .... which looks like this:
Cases With
x# Claim#s Count
1 450000
2 5000
3 150
4 75
5 20
6 2
9 1
I hope this looks like a two-column table
@karl.guent, Ah okay, apologies, this makes sense!
The Claims column would then indeed be your dimension. And the case count your KPI (if I understand correctly now 😆 ). Since you are getting the claims and workorder data from the same table, you should use the DOMAIN_TABLE function.
Your code would look something like this.
Dimension:
PU_COUNT_DISTINCT( DOMAIN_TABLE( "YourTable"."YourWorkIDColumn"), "YourTable"."YourClaimIDColumn")
KPI:
Count the amount of cases.
Im not whether your WorkID or Work Order is your case identifier. So play around with this, and let me know if you get the result you wanted 😁
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.