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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors