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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

sum up from the beginning of the date table to date

I am referencing this article to calculate the beginning to date summaring but get 0.

 

I don't think it's correct to use the argument all() to represent the year-end which is a constant value.

 

Do you have other solutions to get the beginning to date sumup?

 

https://exceltown.com/en/tutorials/power-bi/powerbi-com-and-power-bi-desktop/dax-query-language-for-...

 

 

Julianaz_1-1694099799684.png

 

 

7 REPLIES 7
Anonymous
Not applicable

Hi @Anonymous ,

 

Based on your describing, I think you want to return a cumulative value, right?

You can try creating the following measure.

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

vstephenmsft_0-1694499248052.png

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.           

Anonymous
Not applicable

Why we need use Filter(ALLSELECTED()... ?
Thanks @Anonymous 

Anonymous
Not applicable

I mean if we put the date as a slicer and select different date(s) the result will be different.

chonchar
Helper V
Helper V

Hi, 

 

YTD Total =
SUM(YTD
)
 
Try this. 
Anonymous
Not applicable

Actually it's not working YTD already restricted everything in one fiscal year and you can't calculate the cumulative data for all any longer.
Sorry about that.

Anonymous
Not applicable

wow I guess that's very smart 🙂 I will try to see if it works~~~~~

I'd have to play with it get it right. I definitely have to work through it lol

 

Sorry about that. Good luck!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors