Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi, community,
I'm trying to get the cumulative total calls in my data monthwise.
As you can see if I'm using the Month number then the cumulative is working perfectly.
But in Month's case, it is not working.
Is there any workaround if I want it monthwise?
used the following Dax measure.
Solved! Go to Solution.
@Niraj_vora0106 , First of if you have date table, then you should use the month from dates table. Second distinct count will not sum , because same id can repeat across month
Also you can use date, no need to use month, you can try like
V3 Cumulative Total Calls =
CALCULATE(DISTINCTCOUNT(T2363[IncidentNo]),
FILTER(ALLSELECTED(DATES),
DATES[Date] <= MAX(DATES[Date])))
or
V3 Cumulative Total Calls =
CALCULATE(sumx(Values(Dates[Month]), calculate(DISTINCTCOUNT(T2363[IncidentNo]))),
FILTER(ALLSELECTED(DATES),
DATES[Date] <= MAX(DATES[Date])))
Hi, @amitchandak
Oh okay got it, used the Months from Dates column and tried the DAX that you suggested.
Got the outcome.
Thank you, sir!
@Niraj_vora0106 , First of if you have date table, then you should use the month from dates table. Second distinct count will not sum , because same id can repeat across month
Also you can use date, no need to use month, you can try like
V3 Cumulative Total Calls =
CALCULATE(DISTINCTCOUNT(T2363[IncidentNo]),
FILTER(ALLSELECTED(DATES),
DATES[Date] <= MAX(DATES[Date])))
or
V3 Cumulative Total Calls =
CALCULATE(sumx(Values(Dates[Month]), calculate(DISTINCTCOUNT(T2363[IncidentNo]))),
FILTER(ALLSELECTED(DATES),
DATES[Date] <= MAX(DATES[Date])))
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 26 | |
| 24 | |
| 16 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 38 | |
| 30 | |
| 21 |