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.
Hi there
I am after a cumulative total for Vehicle Actuals to include in a double axis visual.
I want the visual blue line axis to show 28 not two lots of 14
your help would be greatly appreciated 🙂
cheers
Vanessa
hi @NessFlood ,
try to plot the visual with region column and a measure like:
cumulative total =
CALCULATE(
SUM(data[vehicles actual]),
data[region]<=MAX(data[region])
)
The measure works but it's not cumulative 😄
As more vehicle installations are completed across the regions, I need the blue line to increase - thank you 😀
Hi @NessFlood ,
Please see below solution. hope this solves your ask
Are you looking for a fixed line of 28?
Count of Table Name total for Year =
CALCULATE(
Sum('Table1'[VEHICLES ACTUAL]),
ALL('Table1')
)
Replace ALL with ALLSELECTED if you want to calculate with filters.
Use this measure for your line!
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.