This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I've check relationship everything but do not get what makes it wrong. I want the cumulative total for each month but this only shows the final number:
Hope anyone could clarify my confusion. Thank you
Solved! Go to Solution.
Thanks guys. I don't really know why it does not work. But I have an alternative way. Instead of using FILTER (ALL ( ... ) etc, I will use DATESYTD like this
Thanks guys. I don't really know why it does not work. But I have an alternative way. Instead of using FILTER (ALL ( ... ) etc, I will use DATESYTD like this
@yennhi95zz , I created my own sample to calculate running total and it's working fine.
@yennhi95zz , have tried water wall visual for that
one way is
M1= SUM(Sales[Sales Amount])
M2 = CALCULATE([M1],filter(allselected(date),date[date] <=eomonth(max(date[Date]),-1) ))//means cumm till last month
Now if you plot these two and make m2 as white you will reach till last month
Or use M3 in place of M1
M3 =
var _max = maxx(allselected('Date') ,'Date' [Date]))
return
if( max('Date' [Date]) = _max, CALCULATE([M1],filter(allselected(date),date[date] <=max(date[Date]))) , [M1] )
Cumm on M1 in last month
M4 =
var _max = maxx(allselected('Date') ,'Date' [Date]))
return
if( max('Date' [Date]) = _max, blank(), [M2])
use M3 and M4 in visual with m4 as white and try
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 38 | |
| 29 | |
| 28 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 30 | |
| 25 | |
| 24 |