Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
29 | |
14 | |
11 | |
10 | |
9 |