Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello!
I'm hoping someone can help me write a DAX statement for a prior period (latest 12, 26, 52 weeks) which I'd like to then turn into a % chg. I have weekly data now which i've created trended times for, but I don't know how to get the prior periods trended time.
Below is one of my current formula's for latest 24wks periods:
Solved! Go to Solution.
This is fantastic! I think I can figure out the rest from here, thank you so much for breaking this down.
Hi @AndrewUrban ,
Please follow these steps:
1. Create a new table with all the options you need in the slicer.
2. Turn the single select of the slicer on
3. Then create a measure that calculate a prior period.
Measure =
SWITCH( MAX('for sliceer'[Value]),
"Last 12 Weeks",
CALCULATE(SUM(Kroger[Units]),FILTER(ALL('Date'),'Date'[Week Rank] >= MAX('Date'[Week Rank])-11 && 'Date'[Week Rank] <= MAX('Date'[Week Rank]))),
"Last 26 Weeks",
CALCULATE(SUM(Kroger[Units]),FILTER(ALL('Date'),'Date'[Week Rank] >= MAX('Date'[Week Rank])-25 && 'Date'[Week Rank] <= MAX('Date'[Week Rank]))),
CALCULATE(SUM(Kroger[Units]),FILTER(ALL('Date'),'Date'[Week Rank] >= MAX('Date'[Week Rank])-51 && 'Date'[Week Rank] <= MAX('Date'[Week Rank])))
)
4. Final output
In addition, what's the logic of "a % chg", please provide more details to help us clarify your scenario.
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is fantastic! I think I can figure out the rest from here, thank you so much for breaking this down.
Hi AndrewUrban,
Coud you show the tables in your data model?
Best regards.
Hi,
Thanks for the reply, see below for my "Date" table:
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |