cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Dsch1971
Frequent Visitor

Help with cumlative total

HC.PNG

Hi All

Can anyone please help?

I have a measure called True Headcount (As in the picture).

I need to add a measure that adds a cumlative total (Total) i.e

 

Total for April will be April

Total for May would be April + May

Total for June would be April + May + June etc.

 

How can I achieve this please?

 

I have a date table called Calendar that has as field in it called date.

 

Richard 

 

 

1 REPLY 1
SpartaBI
Community Champion
Community Champion

@Dsch1971 in case the granularity of each month is the end of it then this will work:

 

RT = 
VAR _current = MAX('Calendar'[Date])
VAR _result =
CALCULATE(
	SUM('Table'[True Headcount),
	REMOVEFILTERS('Calendar')
	'Calendar'[Date] <= _current
)
RETURN
	_result

 


But I'm not sure this is the exact case you have. Let me know.



2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors
Top Kudoed Authors