Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Pallavi_m
Helper I
Helper I

Cumulative monthly totals

Hi,

I have a Date table and fact table related by field called Year

I want to achieve a table like this:

YearMonthNosalesMonthly Cumulative
2022012020
2022023050
2022034090
20220450140

I have used this dax to obtain this measure Monthly cumulative:

 

Monthly cumulative=
calculate(sum(sales),
filter(allselected('Date'),
'Date'[Dates]<=Max('Date'[Dates])))

 

But the result is 

140

140

140

140

I want to this in a bar graph too.

How do i do this?

2 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but please try something like below whether it suits your requirement.

 

Monthly cumulative =
CALCULATE (
    SUM ( sales[revenue] ),
    FILTER ( ALLSELECTED ( 'Date'[Dates] ), 'Date'[Dates] <= MAX ( 'Date'[Dates] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

Mahesh0016
Super User
Super User

Mahesh0016_0-1671087153889.png

Monthly cumulative =
calculate(sum(fact_table[Sales]),
filter(allselected('fact_table'),
'fact_table'[Month]<=Max('fact_table'[Month])))

 

 

please check your relationship of date and sale table and also filter direction of table.

View solution in original post

3 REPLIES 3
Pallavi_m
Helper I
Helper I

Thanks guys. I got the answer when I was just posting this question. However, the reply button deactivated, when I want to say.. I got the answer.

Thanks again for looking into it.

Mahesh0016
Super User
Super User

Mahesh0016_0-1671087153889.png

Monthly cumulative =
calculate(sum(fact_table[Sales]),
filter(allselected('fact_table'),
'fact_table'[Month]<=Max('fact_table'[Month])))

 

 

please check your relationship of date and sale table and also filter direction of table.

Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but please try something like below whether it suits your requirement.

 

Monthly cumulative =
CALCULATE (
    SUM ( sales[revenue] ),
    FILTER ( ALLSELECTED ( 'Date'[Dates] ), 'Date'[Dates] <= MAX ( 'Date'[Dates] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.