March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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?
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |