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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Cumulative values with start and end date

Hello

I would like to achieve the following.

Have two date targeting filters such as these:

apenaranda_0-1669797688824.png

Select year and a final date, and that I will get the accumulated amount for each month of the current year selected.

If I select year 2018 and end date 31/03/2018, it should come out:

January 2018: xxxx (where xxxx is accumulated from 1/1/2016 to 31/01/2018)

February 2018: xxxx (where xxxx is accumulated from 1/1/2016 to 31/02/2018)

March 2018: xxxx (where xxxx is accumulated from 1/1/2016 to 31/03/2018)

Thank you.

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Syndicate_Admin ;

You could create a measure as follow:

Measure = 
CALCULATE(SUM('Table'[value]),FILTER(ALLSELECTED('Table'),[Date]<=MAX('Table'[Date])))

The final show:

vyalanwumsft_0-1669876532144.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi, @Syndicate_Admin ;

You could create a measure as follow:

Measure = 
CALCULATE(SUM('Table'[value]),FILTER(ALLSELECTED('Table'),[Date]<=MAX('Table'[Date])))

The final show:

vyalanwumsft_0-1669876532144.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Syndicate_Admin
Administrator
Administrator

Hello

The measure you say I already have but it does not do what I want, it simply makes me the total until the maximum date selected but does not give me results per month.

amitchandak
Super User
Super User

@Syndicate_Admin ,

Cumm Sales =
Var _max =max('Date'[date])
return
CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <= _max))

 

or

 

Cumm Sales =
Var _max =max('Date'[date])

Var _max1 =maxX(allselected('Date') , 'Date'[date])
return
CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] <= _max && 'Date'[date] <= _max1   ))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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