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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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

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