Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
pratham39
Contributor III
Contributor III

Set Analysis

Hi,

I have below table

and I want to show in KPI - count of those ID whose status is only 3 (Basically i don't want to count those ID Where status in 3 and 0)

so final count in KPI should be 3 (the green ones i.e. ID-2,4,5) 

doubt1.png

 

Please help me to write set expression in KPI

Thanks

#Setanalysis

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

Hi @pratham39 ,

Maybe this:

count( {< ID = {"=Count(Status)=1"}, Status = {'3'} >} Distinct ID )

I hope it can help.

Best Regards

View solution in original post

2 Replies
agigliotti
Partner - Champion
Partner - Champion

Hi @pratham39 ,

Maybe this:

count( {< ID = {"=Count(Status)=1"}, Status = {'3'} >} Distinct ID )

I hope it can help.

Best Regards

pratham39
Contributor III
Contributor III
Author

Thanks 

it worked!