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
I have a ratio measure, and would like to take the yearly average of that measure.
Here is a screenshot of what I would like to achieve for the new average measure, Measure 2:
Measure 1 is calculated from 2 columns in my dataset, using DAX: Measure 1 = DIVIDE(Table1[Column1],Table1[Column2],0)
I have tried using this formula for Measure 2:
Solved! Go to Solution.
@Anonymous ,
Measure 2 = calculate(AvergaeX(Table[Measure1]), filter(allselected(Table),Table[Year]=max(Table[Year])))
or
Measure 2 = calculate(AvergaeX(Table[Measure1]), filter(all(Table),Table[Year]=max(Table[Year])))
1.Use Average
Divide column =
DIVIDE ( 'average table'[column1], 'average table'[Column2], 0 )
average measure =
CALCULATE (
AVERAGE ( 'average table'[Divide column] ),
ALLEXCEPT ( 'average table', 'average table'[Year] )
)
2.Use Averagex
Measure 7 =
SUM ( 'average table'[Divide column] )
use avaragex =
AVERAGEX ( ALLEXCEPT ( 'average table', 'average table'[Year] ), [Measure 7] )
My visualization looks like this:
1.Use Average
Divide column =
DIVIDE ( 'average table'[column1], 'average table'[Column2], 0 )
average measure =
CALCULATE (
AVERAGE ( 'average table'[Divide column] ),
ALLEXCEPT ( 'average table', 'average table'[Year] )
)
2.Use Averagex
Measure 7 =
SUM ( 'average table'[Divide column] )
use avaragex =
AVERAGEX ( ALLEXCEPT ( 'average table', 'average table'[Year] ), [Measure 7] )
My visualization looks like this:
@Anonymous ,
Measure 2 = calculate(AvergaeX(Table[Measure1]), filter(allselected(Table),Table[Year]=max(Table[Year])))
or
Measure 2 = calculate(AvergaeX(Table[Measure1]), filter(all(Table),Table[Year]=max(Table[Year])))
@amitchandak , I used your formula and changed the averagex part to this:
Hi @amitchandak ,
I cant seem to use that formula. After AverageX, Table[Measure1] does not seem to be an option for the first arguement, only Table is available in the drop down list.
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 |
---|---|
108 | |
73 | |
53 | |
52 | |
44 |
User | Count |
---|---|
161 | |
110 | |
69 | |
58 | |
50 |