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 |
---|---|
142 | |
62 | |
39 | |
34 | |
27 |
User | Count |
---|---|
163 | |
54 | |
38 | |
32 | |
26 |