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 Everyone.
I am trying to create a measure (must be measure) - moving/rolling average (2 or 5 results) for DupResult column.
My Table looks like
rowid | DupResult | OrigResult |
213034 | 8.97 | 7.29 |
215470 | 7.88 | 9.81 |
219651 | 7.97 | 6.32 |
225171 | 7.62 | 9.91 |
233214 | 9.14 | 12.45 |
233264 | 8.62 | 11.75 |
238295 | 6.33 | 8.98 |
Please help
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
INDEX function (DAX) - DAX | Microsoft Learn
WINDOW function (DAX) - DAX | Microsoft Learn
2 rows moving avg DupResult: =
VAR _previousrow =
MAXX (
OFFSET (
-1,
ALL ( data ),
ORDERBY ( data[rowid], ASC ),
,
,
MATCHBY ( data[rowid] )
),
data[rowid]
)
VAR _t =
WINDOW (
-1,
REL,
0,
REL,
ALL ( data ),
ORDERBY ( data[rowid], ASC ),
,
,
MATCHBY ( data[rowid] )
)
RETURN
IF (
_previousrow <> BLANK ()
&& HASONEVALUE ( data[rowid] ),
AVERAGEX ( _t, data[DupResult] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
Please check the below picture and the attached pbix file.
INDEX function (DAX) - DAX | Microsoft Learn
WINDOW function (DAX) - DAX | Microsoft Learn
2 rows moving avg DupResult: =
VAR _previousrow =
MAXX (
OFFSET (
-1,
ALL ( data ),
ORDERBY ( data[rowid], ASC ),
,
,
MATCHBY ( data[rowid] )
),
data[rowid]
)
VAR _t =
WINDOW (
-1,
REL,
0,
REL,
ALL ( data ),
ORDERBY ( data[rowid], ASC ),
,
,
MATCHBY ( data[rowid] )
)
RETURN
IF (
_previousrow <> BLANK ()
&& HASONEVALUE ( data[rowid] ),
AVERAGEX ( _t, data[DupResult] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
22 | |
19 | |
17 | |
9 | |
5 |
User | Count |
---|---|
37 | |
29 | |
16 | |
14 | |
12 |