Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a formula but I am looking at changing it do the date range is specifically between two dates?
2017 YTD = (IF (CALCULATE (SUM('Data Dump - Spend'[Credit (incl VAT)])) = BLANK(),0,
CALCULATE (SUM('Data Dump - Spend'[Credit (incl VAT)]),FILTER (ALL('Data Dump - Trade Spend'[Invoice Date] ),'Data Dump - Spend'[Invoice Date] <= DATE ( 2017, 6, 1 )))))
How could I change it to be between 01.04.2017 and 01.06.2017?
Kind regards
Dom
Solved! Go to Solution.
@Anonymous,
You can use this:
2017 YTD =
(
IF (
CALCULATE ( SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ) ) = BLANK (),
0,
CALCULATE (
SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ),
FILTER (
ALL ( 'Data Dump - Trade Spend'[Invoice Date] ),
'Data Dump - Spend'[Invoice Date] <= DATE ( 2017, 6, 1 )
&& 'Data Dump - Spend'[Invoice Date] >= DATE ( 2017, 4, 1 )
)
)
)
)
@Anonymous,
Try this instead:
2017 YTD =
IF (
CALCULATE ( SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ) ) = BLANK (),
0,
CALCULATE (
SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ),
FILTER (
ALL ( 'Data Dump - Trade Spend'[Invoice Date] ),
'Data Dump - Spend'[Invoice Date] <= DATE ( 2017, 6, 1 )
&& 'Data Dump - Spend'[Invoice Date] >= DATE ( 2017, 4, 1 )
)
)
+ 0
)
@Anonymous,
You can use this:
2017 YTD =
(
IF (
CALCULATE ( SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ) ) = BLANK (),
0,
CALCULATE (
SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ),
FILTER (
ALL ( 'Data Dump - Trade Spend'[Invoice Date] ),
'Data Dump - Spend'[Invoice Date] <= DATE ( 2017, 6, 1 )
&& 'Data Dump - Spend'[Invoice Date] >= DATE ( 2017, 4, 1 )
)
)
)
)
Thanks, this works really well.
@Anonymous Although the empty value now shows up as blank instead of £0?
@Anonymous,
Try this instead:
2017 YTD =
IF (
CALCULATE ( SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ) ) = BLANK (),
0,
CALCULATE (
SUM ( 'Data Dump - Spend'[Credit (incl VAT)] ),
FILTER (
ALL ( 'Data Dump - Trade Spend'[Invoice Date] ),
'Data Dump - Spend'[Invoice Date] <= DATE ( 2017, 6, 1 )
&& 'Data Dump - Spend'[Invoice Date] >= DATE ( 2017, 4, 1 )
)
)
+ 0
)
How strange! Thanks Nick.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 74 | |
| 50 | |
| 48 | |
| 46 |