Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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