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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
janislv
Helper I
Helper I

MAXX - can't get off filter

Ok, maybe I'm dumb, but what could be wrong with this measure? I'm trying to get the max value and ignore the time filter.

 

Max difference =
VAR table_x =
ADDCOLUMNS (
'Hourly calendar',
"input", [Input measure],
"output", [Output measure]
)
VAR max_difference =
CALCULATE ( MAXX ( table_x, [input] - [output] ), ALL ( 'Hourly calendar' ) )
RETURN
max_difference

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Once you define a variable, it's fixed and will not be modified by CALCULATE adjusting filter context.

 

See if this works better:

Max difference =
VAR table_x =
    ADDCOLUMNS (
        ALL ( 'Hourly calendar' ),
        "input", [Input measure],
        "output", [Output measure]
    )
VAR max_difference = MAXX ( table_x, [input] - [output] )
RETURN
    max_difference

View solution in original post

2 REPLIES 2
janislv
Helper I
Helper I

Thank You, @AlexisOlson ! Bingo!

AlexisOlson
Super User
Super User

Once you define a variable, it's fixed and will not be modified by CALCULATE adjusting filter context.

 

See if this works better:

Max difference =
VAR table_x =
    ADDCOLUMNS (
        ALL ( 'Hourly calendar' ),
        "input", [Input measure],
        "output", [Output measure]
    )
VAR max_difference = MAXX ( table_x, [input] - [output] )
RETURN
    max_difference

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors