Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Runicas
Frequent Visitor

Displaying sum of revenue for the same quarter weeks

Hi,
I have a an issue I can't figure out.
Here is a sample of my data:

Runicas_0-1706871292367.png

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!

5 REPLIES 5
govindarajan_d
Super User
Super User

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. 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.