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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Moving Average by Filtering Specific Column

Hi All,
Please note that  I am able to get the Last 7 days rolling Average for the below chart by Using the following Dax

Rifdhy_Hassen_0-1660021905463.png

Last 7 Days AVG = ([7 Days Moving SUM.]+0)/[# of Days]
7 Days Moving SUM. = CALCULATE([Total Fuel Consumed],DATESINPERIOD('Calendar'[Date],LASTDATE('Calendar'[Date]),-7,DAY))
# of Days = CALCULATE(DISTINCTCOUNT('Calendar'[Date]),DATESINPERIOD('Calendar'[Date],LASTDATE('Calendar'[Date]),-7,DAY))
 
Anyway, If I Filter the above chart by Specific Column then Last 7 Days AVG getting wrong
Rifdhy_Hassen_1-1660022054497.png

 

In this case, the Last 7 Days' AVG should be about 350/7,350/6,... so on

So how can I solve this?

 

Hoping for your support Guys...

Thanking a lot

Faithfully,

Rifdhy (+94770848216)

1 ACCEPTED SOLUTION
liuqi_pbi
Resolver III
Resolver III

Hi @Anonymous 

 

How about try these measures 

7 Days Moving SUM. =
CALCULATE (
    [Total Fuel Consumed],
    ALL ( 'Calendar'[Date] ),
    DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)
# of Days =
CALCULATE (
    DISTINCTCOUNT ( 'Calendar'[Date] ),
    ALL ( 'Calendar'[Date] ),
    DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)
Last 7 Days AVG = DIVIDE ( [7 Days Moving SUM.] + 0, [# of Days] )

 

In addition, did you use 'Calendar'[Date] column on X-axis in the visual? It is expected there. 

 

----------------------------------------------------------------------

If this reply helps solve the problem, please mark it as Solution! Kudos are appreciated too!

View solution in original post

1 REPLY 1
liuqi_pbi
Resolver III
Resolver III

Hi @Anonymous 

 

How about try these measures 

7 Days Moving SUM. =
CALCULATE (
    [Total Fuel Consumed],
    ALL ( 'Calendar'[Date] ),
    DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)
# of Days =
CALCULATE (
    DISTINCTCOUNT ( 'Calendar'[Date] ),
    ALL ( 'Calendar'[Date] ),
    DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)
Last 7 Days AVG = DIVIDE ( [7 Days Moving SUM.] + 0, [# of Days] )

 

In addition, did you use 'Calendar'[Date] column on X-axis in the visual? It is expected there. 

 

----------------------------------------------------------------------

If this reply helps solve the problem, please mark it as Solution! Kudos are appreciated too!

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.