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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am creating a New Customers Sales Rolling measure by creating a summarize table in dax:
The CustomerOrdersFinal table from the above measure looks like this:
In the last line of the dax measure I am referring to rolling column, but when I am doing a simple graph, it seems data from SalesByYear are taken into consideration:
What am I doing wrong?
File to download: https://drive.google.com/file/d/12sVJPAB-3xC1B8EWRoX5-uDKRFP3VxMo/view?usp=sharing
you may be overcomplicating things a little. Try this
New Customers Sales running total =
var o = FILTER(ALLSELECTED(Orders[Klient_Nazwa]),calculate(DISTINCTCOUNT(Orders[ ID Zamówienia]))<3)
var y = max('Calendar'[Year])
return CALCULATE(sum(Orders[Sprzedaż]),'Calendar'[Year]<=y,Orders[Klient_Nazwa] in o)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.