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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
CloudMonkey
Post Prodigy
Post Prodigy

Presenting average-to-date in table

Hi,

 

I have sales data mapped by region and week. I can create a table of sales by week (columns B to H below) but please can you tell me how to create the rolling to date average for the trial period (columns I to O) (i.e. column K is the average of the first 3 weeks, column O is the average of the first 7 weeks). The table will need to expand automatically as data is added for new weeks.

 

 

sceenshot pricing.JPG

 

Thanks,

 

CM

1 ACCEPTED SOLUTION
v-sihou-msft
Microsoft Employee
Microsoft Employee

@CloudMonkey

 

In this scenario, you can create an "Average to Date" measure. But this measure must be along with each week sales, which means it can only appear within each column group. We can't have all measure results appear in another matrix next to the initial matrix. 

 

Average to Date =
CALCULATE (
    AVERAGE ( Table5[Sales] ),
    FILTER (
        ALL ( Table5 ),
        Table5[Week] <= MAX ( Table5[Week] )
            && Table5[Region] = MAX ( Table5[Region] )
    )
)

4.PNG

 

Regards,

 

 

View solution in original post

2 REPLIES 2
v-sihou-msft
Microsoft Employee
Microsoft Employee

@CloudMonkey

 

In this scenario, you can create an "Average to Date" measure. But this measure must be along with each week sales, which means it can only appear within each column group. We can't have all measure results appear in another matrix next to the initial matrix. 

 

Average to Date =
CALCULATE (
    AVERAGE ( Table5[Sales] ),
    FILTER (
        ALL ( Table5 ),
        Table5[Week] <= MAX ( Table5[Week] )
            && Table5[Region] = MAX ( Table5[Region] )
    )
)

4.PNG

 

Regards,

 

 

CloudMonkey
Post Prodigy
Post Prodigy

Hi, I'm assuming from the lack of response this isn't possible? Or was I unclear in the description?

 

Thanks,

 

CM

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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