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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Fiddel86
New Member

Dynamic Moving Average based on my selection in Slicer (Months)

Hi there,

 

can anyone help, to get my goal:

 

I am trying to build a dynamic moving average line inside my diagram based on the selection of months in a year or between years.

 

For example:

 

KPI

 

I select June 23 to May 24 in "Month Slicer" for showing up 1 year of specific raw data for kpi

 

Now i want to have a moving average line too, which calculates this timeline, but be dynamic if i change months from June 23-May24 to for example August 23 - September 24.

 

How can i solve this? 

1 REPLY 1
Anonymous
Not applicable

Hi @Fiddel86 ,

Perhaps the following dax expression could be used.

DATESINPERIOD function (DAX) - DAX | Microsoft Learn

CALCULATE(
    AVERAGE('Table'[Amount]),
    DATESINPERIOD(
        'DateTable'[Date],
        LASTDATE('DateTable'[Date]),
        -1, 
        YEAR
    )
)

If I'm misunderstanding, please provide simple data and show the expected results as a picture.

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors