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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
madeline
Frequent Visitor

Get a column's value(s) based on another column's max

In my table, I have a calculated column (NumFailedLogins) which shows the number of times a user appears based off of a condition. Now, I want to get a value from another column (User) based off of the max from the calculated column (NumFailedLogins). There is a possibility of multiple users having the same max value, but I only need to return at least one of them.

UserNumFailedLogins
Mary3
Mary3
Mary3
Frank2
Jane0
Frank2
Frank2
John3
John3
John3
Frank2

 

In the above example, I would like to return either Mary or John (or both if that's even possible. If not, it's fine). 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@madeline

 

You could use this measure

File attached as well

 

Measure =
CONCATENATEX (
    CALCULATETABLE (
        VALUES ( Table1[User] ),
        FILTER ( Table1, Table1[NumFailedLogins] = MAX ( Table1[NumFailedLogins] ) )
    ),
    Table1[User],
    ", "
)

 

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@madeline

 

You could use this measure

File attached as well

 

Measure =
CONCATENATEX (
    CALCULATETABLE (
        VALUES ( Table1[User] ),
        FILTER ( Table1, Table1[NumFailedLogins] = MAX ( Table1[NumFailedLogins] ) )
    ),
    Table1[User],
    ", "
)

 

This is awesome, thanks!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors