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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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
Top Kudoed Authors