Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have my measure:
DIVIDE
(
SUM(Fact[Hours]) - CALCULATE (SUM( Fact[Hours2]) , ALL(Fact) , Fact[Type]="D" ),
SUM(Fact[Hours])
)
It works fine.
But now I want to use it in another measure to do:
SUM(Fact[Hours]) * MAX(MyMeasure)
And it doesn’t work… Why can't I do MAX(MyMeasure)?
Solved! Go to Solution.
Hi @Anonymous ,
As far as I know, you don't need to use MAX() to use a measure, you can use it directly in your code.
MAX() only support to use a column.
Measure =
SUM(Fact[Hours]) * [MyMeasure]
If you want to get MAX from the measure, you can try MAXX().
Measure =
SUM ( Fact[Hours] ) * MAXX ( VALUES ( 'TableName'[KeyColumn] ), [MyMeasure] )
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
MAX of mymeasure in which dimension?
I have a fake "Measures" table where I store all my measures.
(I created it using DATATABLE, this approach was recommended from sqlbi website)
Hi @Anonymous ,
As far as I know, you don't need to use MAX() to use a measure, you can use it directly in your code.
MAX() only support to use a column.
Measure =
SUM(Fact[Hours]) * [MyMeasure]
If you want to get MAX from the measure, you can try MAXX().
Measure =
SUM ( Fact[Hours] ) * MAXX ( VALUES ( 'TableName'[KeyColumn] ), [MyMeasure] )
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
13 | |
13 | |
11 | |
6 |