Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello,
I would like to calculate the YTD Spend and the YTD -1 Spend for the same period.
For example for 2021 we are in October so I would like to calculate the Spend for 2020 only until October.
For the moment I have created this formula :
Spend YTD-1 = CALCULATE(SUM('Spend consolidé'[Invoice_Accounting_EUR]),SAMEPERIODLASTYEAR('Calendar'[Date]))
But it's not working, when I filter on 2021, with this formula I have the spend for the entire year of 2020 instead of having until October.
Any advice to help me solve my problem ?
Thanks,
Axel
Finally this worked for me!
Spend YTD = CALCULATE(SUM('TableName'[FieldName]), DATESYTD('DateTableName'[Date]))
Spend YTD-1 = CALCULATE([Spend YTD], SAMEPERIODLASTYEAR(DATESYTD('DateTableName'[Date])))
I think the clue was filtering by DATESYTD.
Spend LYTD =
CALCULATE(
SUM( 'Spend consolidé'[Invoice_Accounting_EUR] ),
DATEADD( DATESYTD( 'Calendar'[Date] ), -1, YEAR )
)
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi, I try your formula but it's not working, this formula returns me the whole previous year
@AxelKAp can you try this for YTD calculation
YTDSumCY=
CALCULATE (
SUM ( 'Spend consolidé'[Invoice_Accounting_EUR] ),
'Calendar'[Calendar_Date] <= MAX ( 'Spend consolidé'[Date] ),
ALL ( 'Calendar'[Calendar_Date] )
)
YTDSumPY = CALCULATE ([YTDSumCY], SAMEPERIODLASTYEAR('Calendar'[Calendar_Date]))
Hi, I have an error with ths formula, Power BI say me that I can't use MAX() with a TRUE/FALSE condition
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
24 | |
22 | |
20 | |
15 | |
10 |