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
Oros
Post Prodigy
Post Prodigy

Get average sales from the last 7 weeks

Hello,

 

How do you create a measure that will calculate the average sales per week in the past 7 weeks?

 

Thanks.

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

You calculate the sum of sales for the last 49 days and divide it by 7.

View solution in original post

Anonymous
Not applicable

Hi @Oros ,

Below is my table:

vxiandatmsft_0-1708320794682.png

The following DAX might work for you:

 

Measure = SUM('Table'[data])/7

 

The final output is shown in the following figure:

vxiandatmsft_1-1708320850899.png

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @Oros ,

Below is my table:

vxiandatmsft_0-1708320794682.png

The following DAX might work for you:

 

Measure = SUM('Table'[data])/7

 

The final output is shown in the following figure:

vxiandatmsft_1-1708320850899.png

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @Anonymous ,

 

It works!

lbendlin
Super User
Super User

You calculate the sum of sales for the last 49 days and divide it by 7.

Thanks @lbendlin!

 

 

Hi @lbendlin ,

 

Thanks for your reply.  How would the exact measure be?

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information or anything not related to the issue or question.

If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

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