Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all !
I have a report like this :
I would like that, when I select a year in the filter, it sums the selected year and all the previous years.
Exemple : if I select 2021 in the filter, I should therefore have A = 4, B = 11 and C = 14. If I select 2022: A = 6, B = 15, C = 20.
I tried with several calculations (CALCULATE, SELECTEDVALUES, ALL, etc.) but I didn't succeed, using the dates filter always breaks everything.
If anyone has an idea that would be great because I'm really stuck... Thank you
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Expected measure: =
CALCULATE ( SUM ( Data[Value] ), 'Year'[Year] <= MAX ( 'Year'[Year] ) )
Thanks @FreemanZ and @Jihwan_Kim ,
The solution of @Jihwan_Kim work simply.
In my real data, I was working with a date field and it didn't work. I had to extract in another column the year and use this one for it to work.
Thanks !
Hi,
Please check the below picture and the attached pbix file.
Expected measure: =
CALCULATE ( SUM ( Data[Value] ), 'Year'[Year] <= MAX ( 'Year'[Year] ) )