Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |