Forum Discussion
Ganeeyah25
Sep 03, 2021Copper Contributor
Distinct Count number of completed Goals when all Task statuses in Goals are marked as completed
Good Day Excel users, what approach and formula can i use to solve this challenge on my subject (Distinct Count number of completed Goals when all Task statuses in Goals are marked as completed ). ...
- Sep 03, 2021
See the attached version. I added a helper column to the first sheet.
I used formulas that will work in all versions of Excel. It would be easier in Excel 365.
SergeiBaklan
Sep 03, 2021Diamond Contributor
One more option for the collection. It could be done with PivotTable if add data to data model creating it and use couple of DAX measures
Unique Goals :=
DISTINCTCOUNT ( Range[GOALS] )
Completed Unique :=
CALCULATE ( [Unique Goals], Range[Goal STATUS] = "Completed" ) + 0
Resulting PivotTable
- Ganeeyah25Sep 10, 2021Copper ContributorThank you