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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi guys!
I want to sum the quantity sold on a day that my target is blank to the quantity sold on a day immediately before that target has a value.
The expected result is:
Can anyone help me to do this using DAX?
Solved! Go to Solution.
If you have a Date table linked to both sales and targets then I think the below should work
Sales amended =
IF (
NOT ISBLANK ( SUM ( Targets[Goal] ) ),
VAR currentDate =
SELECTEDVALUE ( 'Date'[Date] )
VAR nextNonBlank =
CALCULATE (
FIRSTNONBLANK ( 'Date'[Date], SUM ( Targets[Goal] ) ),
'Date'[Date] > currentDate
)
RETURN
CALCULATE (
SUM ( Sales[Sales made] ),
DATESBETWEEN ( 'Date'[Date], currentDate, nextNonBlank - 1 )
)
)
If you have a Date table linked to both sales and targets then I think the below should work
Sales amended =
IF (
NOT ISBLANK ( SUM ( Targets[Goal] ) ),
VAR currentDate =
SELECTEDVALUE ( 'Date'[Date] )
VAR nextNonBlank =
CALCULATE (
FIRSTNONBLANK ( 'Date'[Date], SUM ( Targets[Goal] ) ),
'Date'[Date] > currentDate
)
RETURN
CALCULATE (
SUM ( Sales[Sales made] ),
DATESBETWEEN ( 'Date'[Date], currentDate, nextNonBlank - 1 )
)
)
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.