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
happy16_2023
New Member

Average of 4 weeks Data

I want to get the average of 4 weeks data in DAX. can someone help on this?

 

 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @happy16_2023 ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_1-1667196115226.png

Please try:

Measure =
CALCULATE (
    AVERAGE ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        WEEKNUM ( 'Table'[Date] ) <= WEEKNUM ( MAX ( 'Table'[Date] ) )
            && WEEKNUM ( 'Table'[Date] )
                >= WEEKNUM ( MAX ( 'Table'[Date] ) ) - 3
    )
)

Final output:

vjianbolimsft_2-1667196262528.png

Best Regards,

Jianbo Li

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

2 REPLIES 2
v-jianboli-msft
Community Support
Community Support

Hi @happy16_2023 ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_1-1667196115226.png

Please try:

Measure =
CALCULATE (
    AVERAGE ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        WEEKNUM ( 'Table'[Date] ) <= WEEKNUM ( MAX ( 'Table'[Date] ) )
            && WEEKNUM ( 'Table'[Date] )
                >= WEEKNUM ( MAX ( 'Table'[Date] ) ) - 3
    )
)

Final output:

vjianbolimsft_2-1667196262528.png

Best Regards,

Jianbo Li

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

Greg_Deckler
Super User
Super User

@happy16_2023 Rolling Weeks - Microsoft Power BI Community



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
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.