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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Kopek
Helper IV
Helper IV

Sum Sales Average per selected period

Hi !

I have a daily snapshot of sales data, i am trying to count the average of sum of sales for last 4 and 12 weeks.

Unfortunately i am ending up having a 4weeks daily average for some reason... can somebody help me sorting that issue.

in this case last 4 week average should be 688929. And due to daily snapshot i have 19.29...

Kopek_0-1734017279026.png

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Last 4 weeks average =
VAR Weeks =
    CALCULATETABLE (
        VALUES ( 'Date'[Year-week] ),
        DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -28, DAY )
    )
VAR Result =
    AVERAGEX (
        Weeks,
        CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Date', 'Date'[Year-week] ) )
    )
RETURN
    Result

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Try

Last 4 weeks average =
VAR Weeks =
    CALCULATETABLE (
        VALUES ( 'Date'[Year-week] ),
        DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -28, DAY )
    )
VAR Result =
    AVERAGEX (
        Weeks,
        CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Date', 'Date'[Year-week] ) )
    )
RETURN
    Result
lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Please show the expected outcome based on the sample data you provided.

Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.