March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello, is there a method to get these results with DAX based on one slicer. what I need it the results of a week from four weeks ago and the same week a year ago.
I have a date table set up with the week commencing field. I can easily get the green section, but I am not sure about the Dax to get the orange, if its possible.
Solved! Go to Solution.
You are incorrectly using inbuilt time intelligence. Read the rules here
https://exceleratorbi.com.au/power-bi-calendar-tables/
you must have a calendar table at the day level of granularity. Your measure refers to the week ending date. It should be calendar date in a calendar table at the day level
Hi @NewbieJono ,
Have you solved your problem? If so, can you share your solution here and mark the correct answer as a standard answer to help other members find it faster? Thank you very much for your kind cooperation!
Best Regards
Yilong Zhou
Any ideas on why this does not bring back volumes? There are volumes last year
You are incorrectly using inbuilt time intelligence. Read the rules here
https://exceleratorbi.com.au/power-bi-calendar-tables/
you must have a calendar table at the day level of granularity. Your measure refers to the week ending date. It should be calendar date in a calendar table at the day level
Hi @NewbieJono ,
I think you can try the following DAX code, it might be able to give you some help.
4 Week Before =
CALCULATE (
[YourMeasure],
DATEADD ( 'DateTable'[WeekCommencing], -4, WEEK )
)
1 Year before =
CALCULATE (
[YourMeasure],
SAMEPERIODLASTYEAR ( 'DateTable'[WeekCommencing] )
)
From your screenshot I think there is some difficulty in trying to reproduce the results you want, if you can provide the .pbix file or more data I will reproduce the desired results for you.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for your help with this. The WEEK bit seems to error?
Yes. It's called time intelligence and you can read about it here https://exceleratorbi.com.au/dax-time-intelligence-beginners/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |