Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have a an issue I can't figure out.
Here is a sample of my data:
I need to create a measure, which would look at the last closed 4 quarters, and sum up the total revenue for the previous 13 quarter weeks (I show only 2 here).
So on 23 Q1 quarter week 5 I had 1 EUR,
Same quarter week for 23 Q2 I had 2 EUR, so on both rows the total should be 3 EUR as an example.
How do I do it?
Appreciate all the advice!
Hi @Runicas ,
Can you try this? Please replace the Table[Revenue] and calendar[date] with the appropriate columns that you are using.
SumOfRevenueLast13Weeks =
CALCULATE(
SUM(Table[Revenue]),
DATESINPERIOD(
Calendar[Date],
LASTDATE(Calendar[Date]),
-13,
WEEK
)
)
Thanks for your reply.
Unfortunately typical time intelligence does not work in this file, as it's using custom fical calendar.
Also, the "Week part" does not appear as an option for me, only YEAR, QUARTER, MONTH, DAY
Can you show me your fiscal calendar?
Unfortunately I can't share it. But if you can imagine, for year 2023 fiscal quarter week 1 would start on January 1st
for 2024 fiscal quarter week starts on 31st of December
Hi @Runicas,
Can you give me an example of how your calendar table will look like and how you want the result to be? This will help me to better answer your question.
Are Quarter Label and Quarter Week the only columns it has? We can try window function if those are the only two columns available.
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
9 |