Craigc3814
Board Regular
- Joined
- Mar 7, 2016
- Messages
- 217
I am trying to create a formula that creates a cumulative count on project ID for a set of data I have and increases monthly. I can find formulas online that work but only have one filter criteria. (example below)
But I need to factor in the fact that (Projects[Percent Complete] = 100 and Projects[Finishyear] = 2021
Cumulative Task by Finish Date =
CALCULATE(
DISTINCTCOUNT(Projects[PROJECTID]),
FILTER(
ALLSELECTED(Projects),
Projects[TASKNAME]="Advertise Date"))
But I need to factor in the fact that (Projects[Percent Complete] = 100 and Projects[Finishyear] = 2021
Cumulative Task by Finish Date =
CALCULATE(
DISTINCTCOUNT(Projects[PROJECTID]),
FILTER(
ALLSELECTED(Projects),
Projects[TASKNAME]="Advertise Date"))