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
Anonymous
Not applicable

Dynamic MAX for all rows

I have a table that looks like this:

H1H2H3H4H5# Layers
John Smith    1
John SmithMary Jane   2
John SmithMary JaneAndrew Johnson  3
John SmithMary JaneAndrew JohnsonAriel Parker 4
John SmithMary JaneAndrew JohnsonMark Williams 4
John SmithMary JaneJackson Mills  3
John SmithMary JaneJackson MillsJustin Hunt 4
John SmithMary JaneJackson MillsJustin HuntJanet Lind5

 

I want to add a column that shows the Max value of the Layers column among all the rows.

So for the way the table is right now, all the rows in the max column should be 5.

But I want the max to change acoording to the filter. So if I filter Andrew Johnson in H3, the max column should be 4. 

The user can filter any of those columns (H1, H2, H3, H4 or H5)

5 REPLIES 5
DataInsights
Super User
Super User

@Anonymous, is there one slicer for each column (H1, H2, etc.), or is there one slicer that filters multiple columns?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

@DataInsights There is one slicer for each column. Depending on who the user is, they are going to filter on H1, or H2, etc. So if I'm Andrew, for example, I'm gonna use the H3 slicer because my name is in the 3rd hierarchy

@Anonymous, try this measure:

 

Max Layer H3 = 
VAR vSelName =
    SELECTEDVALUE ( Layers[H3] )
VAR vMaxLayer =
    CALCULATE ( MAX ( Layers[# Layers] ), ALL ( Layers ), Layers[H3] = vSelName )
RETURN
    vMaxLayer

 

DataInsights_0-1599077613337.png

 

You can replicate this logic for each column's slicer (H1, H2, etc.).





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

@DataInsights I need the max to be just one column, not 5 different ones 😕 

@Anonymous, revised measure:

 

Max Layer = 
CALCULATE ( MAX ( Layers[# Layers] ), ALLSELECTED ( Layers ) )




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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