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.
I looked at your pbix. It is similar but different from the pics you show. I wasn't able to match what you are showing, so it is hard to troubleshoot it. Also, there are so many columns. You definitely should unpivot these data and simplify your model to make your analysis/visualization easier.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
You want to follow the running total DAX pattern. Your measure should look something like this...
CALCULATE(
SUM([Value]),
FILTER(
ALL(Calendar],
Calendar[Date] <= MAX(Calendar[Date])
)
)
@Anonymous so in place of the SUM([Value]) insert the name of the measure
Hi @littlemojopuppy ,
Thanks for the reply. As you can see in my shared link to pbix file, the value shown are calculated using measure. The name of the measure is "sales ltm". So because of this I'm not able to use SUM() function as it does not take measure value.