Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I've been trying to get YTD measures to compare the current YTD against last year and 2 years ago YTDs. I was able to get the current YTD, but have been having trouble with the other two. 2016 is made up of 14 months and goes from Nov 2015 through Dec 2016 and 2015 starts on Nov 2014 through Oct 2015.
I have a table with account data that has dates and sales. I have also created a calendar table with dates, months, years etc. that's linked to the sales table. I have the following measures:
Total Sales = SUM(Sales[Sales])
CY YTD = TOTALYYTD([Total Sales], Sales[Date])
When I try to get LY YTD, I can't seem to get the amounts from Nov and Dec 2015 to be included. How can I get the time intelligence functions to adjust to these particular years? Thanks for your time and help.
Solved! Go to Solution.
Hi @Anonymous,
I downloaded the YTD_test pbix sent by you.
The approach I had taken is as under.
1. I changed your Dates table formation as - Dates = CALENDAR(MIN(Sales[Date]), MAX(Sales[Date]))
This is the best way to create a calendar table based on the minimum and maximum date of the fact tables.
2. Created a column called MonthNumber = Month(Dates[Date])
3. Set the MonthName to sorted by column MonthNumber.
4. Created a MonthSequentialNumber column
MonthSequentialNumber = ('Dates'[Year] - MIN( 'Dates'[Year] )) * 12 + 'Dates'[MonthNumber]
This generates a sequential number for each month and incremented by 1 for every month in the Dates table.
In the sample file this number ranges from 11 to 45.
To go back 1 year just need to subtract 12 from this. Similarly to go back 2 years subtract by 24 and so on.
5. Created a measure called
YTD1YearB4 = Calculate([Total Sales],Filter(ALL(Dates), Dates[Year] = Max(Dates[Year]) - 1 && Dates
[MonthSequentialNumber] <= Max(Dates[MonthSequentialNumber]) - 12) )
6. Created a measure called
YTD2YearB4 = Calculate([Total Sales],Filter(ALL(Dates), Dates[Year] = Max(Dates[Year]) - 2 && Dates
[MonthSequentialNumber] <= Max(Dates[MonthSequentialNumber]) - 24) )
Depending on the Year selected it will report the 1year before and 2 year before total sales.
I have uploaded the file in one drive. and the link is
https://1drv.ms/u/s!ApP3mBZyGaHfzyeQc9QxgrROjsFD
If this works for you please accept this as a solution and also give KUDOS.
Cheers
CheenuSing
Hi CheenuSing,
Thank you. It worked except I keep running into the same issue I have when I am using the formula to get last year numbers using the sameperiodlastyear dax formula. I think it ihas something to do with 53wks. Not sure how to work around that issue in your formula. This is how I have to work around the sameperiodlast year issue: Year behind Sales = CALCULATE(SUM([Total Sales Amount]),dateadd('Dates'[Date],-364,Day))
In your the formula YTD 3/12/22: last year is using 12/26/21-3/5/2022 vs 1/2/2022-3/12/2022.
Any help is appreciated!!
Hi @Anonymous,
did you get any solution to this??? If yes then kindly share.
Regards,
Hemant
Hi @Anonymous,
Try to do something like this for previous year:
LY YTD = TOTALYTD ( [Total Sales], DATESBETWEEN ( Sales[Date], DATE ( 2015, 11, 01 ), DATE ( 2016, 12, 31 ) ) )
You need to adjust the date part to be affect by your slicers but without further information regarding the tipe of slice and dice you wan to do I can't give you a better explanation.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@MFelix Thanks for the response.
I'm looking to compare last year and 2 years prior to the current year's YTD. So for 2016, the two extra months (Nov and Dec 2015) plus all the months up to September. I tried your suggested measure, but I wasn't able to get it to work correctly. After more searching and trial and error, I was able to get the correct YTD amounts for 2016 with the following measure:
LY YTD = VAR MaxDate = CALCULATE ( MAX ( Sales[Date] ), ALL ( Sales ) ) RETURN CALCULATE ( [LY Total], SAMEPERIODLASTYEAR ( INTERSECT ( VALUES ( Dates[Date] ), DATESBETWEEN ( Dates[Date].[Date], BLANK (), MaxDate ))))
Where [LY Total] is the total sales amount for 2016. Now, I'm having trouble with 2 years prior YTD. I'm just getting the total amounts for the entire year 2015 instead of the YTD. I haven't been successful in getting the right dates filter. I'd like it to look something like this
Hi @Anonymous,
You can try to create a measure like below:
L2Y = CALCULATE(SUM(Sales[Amount]),DATEADD(DATESYTD('Dates'[Date]),-2,YEAR))
If it doesn't work, please share the pbix file with dummy data for us to test.
Best Regards,
Qiuyun Yu
Just wanted to say thanks for this formula
I was struggling to get a previous YTD and this helped me a treat
Hi @Anonymous
Couple of questions.
1. Just like the measure [LY Total] have you calculated any measure for 2 years total.
2. Do you have a calendar table and linked with your Sales Fact table.
3. Going forward what is your financial year. Will it be from Nov to Oct in the future.
I feel you will have to write specific YTD totals for the years 2016 and 2015 as they do not fall under the same financial period.
If you can share the pbix please load it on one drive and provide the link here to formulate a solution.
Cheers
CheenuSing
Hi @CheenuSing, @v-qiuyu-msft,
Thanks for your reply. Yes, I have created a measure for the total from 2 years ago and created a calendar table that's linked to the Sales table. This year's financial year will match the calendar year (Jan - Dec).
Here's a link to a test pbix
Hi @Anonymous,
A quick question. Your financial years are different for each year. Nov - Oct 2015 (12 Months), Nov-Dec 16 (14 Months) and Jan-Dec 2017.
For Profit & Loss, Balance Sheet one may have to consolidate the 12 monhts, 14 months and so on for different financial years.
For Sales Reporting , when the current year is reproted for Jan - Sep 2017 - for 9 months. It would be wrong to compare Nov2015 to Sep 2016 which would be 11 months. One should compare the same number of months in the previous year Jan-Sep 16.
Likewise for Jan-Sep 2015. Otherwise comparisons reflect different number of months.
Please clarify.
Cheers
CheenuSing
How would you go about cutting down the months and getting the ytd numbers? Also, could you explain how this
LY YTD = VAR MaxDate = CALCULATE ( MAX ( Sales[Date] ), ALL ( Sales ) ) RETURN CALCULATE ( [LY Total], SAMEPERIODLASTYEAR ( INTERSECT ( VALUES ( Dates[Date] ), DATESBETWEEN ( Dates[Date].[Date], BLANK (), MaxDate ))))
works with the 14 month year and is it possible to manipulate this to work with 2 years back?
Hi @Anonymous,
I downloaded the YTD_test pbix sent by you.
The approach I had taken is as under.
1. I changed your Dates table formation as - Dates = CALENDAR(MIN(Sales[Date]), MAX(Sales[Date]))
This is the best way to create a calendar table based on the minimum and maximum date of the fact tables.
2. Created a column called MonthNumber = Month(Dates[Date])
3. Set the MonthName to sorted by column MonthNumber.
4. Created a MonthSequentialNumber column
MonthSequentialNumber = ('Dates'[Year] - MIN( 'Dates'[Year] )) * 12 + 'Dates'[MonthNumber]
This generates a sequential number for each month and incremented by 1 for every month in the Dates table.
In the sample file this number ranges from 11 to 45.
To go back 1 year just need to subtract 12 from this. Similarly to go back 2 years subtract by 24 and so on.
5. Created a measure called
YTD1YearB4 = Calculate([Total Sales],Filter(ALL(Dates), Dates[Year] = Max(Dates[Year]) - 1 && Dates
[MonthSequentialNumber] <= Max(Dates[MonthSequentialNumber]) - 12) )
6. Created a measure called
YTD2YearB4 = Calculate([Total Sales],Filter(ALL(Dates), Dates[Year] = Max(Dates[Year]) - 2 && Dates
[MonthSequentialNumber] <= Max(Dates[MonthSequentialNumber]) - 24) )
Depending on the Year selected it will report the 1year before and 2 year before total sales.
I have uploaded the file in one drive. and the link is
https://1drv.ms/u/s!ApP3mBZyGaHfzyeQc9QxgrROjsFD
If this works for you please accept this as a solution and also give KUDOS.
Cheers
CheenuSing
Hi CheenuSing,
I searched for hours on how to figure out how to do YTD LY, YTDL2, L3 years ago and used this calculation and it is great for month end. But how do I get it to work for a YTD in the middle of the month? YTD 2023 works summing up through 3/11/23 but YTD 2022, YTD 2021, YTD 2020 and YTD 2019 sums up all the weeks through the end of March even though we are only through the middle of March. I would like YTD 2022 to be as of 3/12/22, YTD 2021 as of 3/10/21, etc.
BUT Amazing formula!!!
Hi @krider71 ,
I have created new measures to take care of your reequirements.
The code is as under
Thank you! I thought I responded and with some additional questions but not sure where that post went? Anyways, That pretty much worked - you are amazing - the issue I keep having is when years start and end. For Years before and same issue I have in other Powerbi sametimeperiod last year it is using YTD 12/26/21-3/5/22 to compare to 202
YTD 1/1/23-3/11/23. VS I want it to be YTD 1/2/22-3/12/22 to compare to the 2023
Example:
This is what powerbi is showing as my week end dates and Week # of Year. It has week 10 as 3/11/23 and then 3/5/22. I want week 10 to be 3/12/22. Its that week 53 thing and they only way I can fix for comparing TY vs LY is not use sametimeperiod but a formula like:
Week End Date | Week of Year |
3/11/2023 | 10 |
3/4/2023 | 9 |
2/25/2023 | 8 |
2/18/2023 | 7 |
2/11/2023 | 6 |
2/4/2023 | 5 |
1/28/2023 | 4 |
1/21/2023 | 3 |
1/14/2023 | 2 |
1/7/2023 | 1 |
12/31/2022 | 53 |
3/12/2022 | 11 |
3/5/2022 | 10 |
2/26/2022 | 9 |
2/19/2022 | 8 |
2/12/2022 | 7 |
2/5/2022 | 6 |
1/29/2022 | 5 |
1/22/2022 | 4 |
1/15/2022 | 3 |
1/8/2022 | 2 |
1/1/2022 | 1 |
12/25/2021 | 52 |
Thank you for any help!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
157 | |
120 | |
74 | |
72 | |
63 |