Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello All,
I'm hoping some may be able to help, I'm looking to create a DAX measure that replicates the AVEDEV (excel function). I want to find the AVEDEV of the "Fail Rate 2" measure with an average taken for the previous 180 days.
Thank you,
D
Try
Ave dev =
VAR Avg180Days =
AVERAGEX (
WINDOW (
-179,
REL,
0,
REL,
ALL ( 'Date'[Date] ),
ORDERBY ( 'Date'[Date], ASC )
),
[Fail Rate 2]
)
VAR CurrentFailRate = [Fail Rate 2]
VAR RESULT =
ABS ( CurrentFailRate - Avg180Days )
RETURN
Result
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 10 | |
| 8 |