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! Learn more
Moving Range =
VAR EarlierTime =
CALCULATE (
MAX ( 'table'[StartDate] ),
FILTER (
ALLSELECTED ( 'Table'[StartDate] ),
'table'[StartDate] < SELECTEDVALUE ( 'table'[StartDate] )
)
)
VAR EarlierMeasureValue =
CALCULATE ( SUM ( 'table'[Operating Efficency]), 'table'[StartDate] = EarlierTime )
RETURN
ABS ( EarlierMeasureValue - SUM ( 'table'[Operating Efficency]) )
I have this measure and I'm trying to take the average after it has gone through all the rows. Any ideas on how I could go about doing this?
Solved! Go to Solution.
Hi , @Anonymous
According to you description, you can try to use measure like that:
Measure = AVERAGEX(Table, Table[Moving Range])
If I misunderstood you problem ,please let me know.
In addition ,you can kindly share your sample data and expected result if you don't have any Confidential Information.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
is your problem solved?
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi , @Anonymous
According to you description, you can try to use measure like that:
Measure = AVERAGEX(Table, Table[Moving Range])
If I misunderstood you problem ,please let me know.
In addition ,you can kindly share your sample data and expected result if you don't have any Confidential Information.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
look at this.
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.