Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ovonel
Post Prodigy
Post Prodigy

max(MyMeasure) doesnt work...

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)?

1 ACCEPTED SOLUTION

Hi @ovonel ,

 

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.

 

View solution in original post

3 REPLIES 3
FreemanZ
Super User
Super User

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 @ovonel ,

 

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.

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.