Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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/
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 |
---|---|
25 | |
18 | |
17 | |
16 | |
15 |
User | Count |
---|---|
29 | |
27 | |
19 | |
15 | |
14 |