Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have three columns: Objective, Results, Status
I want to calculate the count of Objectives only when all the associated "Results" have status "Completed"
Attached the screenshot.
@sunny_talwar @swuehl @amit_saini @Anil_Babu_Samineni @Kushal_Chawda @Anonymous @rwunderlich @marcus_sommer
Thanks Marcus, but your calculation is giving one extra count.
The following calculation gives exact count:
=COUNT(DISTINCT AGGR(if(count( [Product Key Result])=count({<Status={'COMPLETE'}>}Status), ONLY( [Product Objective])), [Product Objective]))
=count({<Results = {'Completed'}>}Objective)
Did you try what I suggested?
Try it with:
sum(aggr(-(count({<Results = {'Completed'}>}Objective)=count(Objective)),Objective))
- Marcus
Thanks Marcus, but your calculation is giving one extra count.
The following calculation gives exact count:
=COUNT(DISTINCT AGGR(if(count( [Product Key Result])=count({<Status={'COMPLETE'}>}Status), ONLY( [Product Objective])), [Product Objective]))
@Prabhu You got the answer? If so, please mark yourself as correct answer. If not, Please free to ask.