Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
danieldors
Contributor III
Contributor III

Count above target rate

Hello,

 

Im trying to count the number of employees which are over 95% of the following metric:

(sum(AllAppTimely)/sum(AllAppTotal)

 

Thank you.

2 Replies
MayilVahanan
MVP
MVP

Hi @danieldors 

May be try like below

Sum(Aggr(If(sum(AllAppTimely)/sum(AllAppTotal) > 0.95, 1), Employee))

or

Count({<Employee= {"=Employee = (sum(AllAppTimely)/sum(AllAppTotal)>0.95"}>}Distinct Employee)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Shirley102
Contributor
Contributor

Thanks for the information