The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 )
)
)
User | Count |
---|---|
11 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
14 | |
14 | |
9 | |
7 |