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

Aggregating Max value for all Users

Hello All,

 

I'm new to Power BI

 

I want to aggregate data based on Region for the users. 

 

It should take the maximum login for a user and then aggregate it for Region. 

 

How do I do it Power BI. I have provided a simple example of data

 

I'm expecting output to be:

 

Europe 84

US 43

 

Thanks

Varun

 

 

Data:

 

RegionUsernameLogins
EuropeTom25
EuropeTom25
EuropePhil34
EuropePhil34
EuropeMark23
EuropeMark25
EuropeMark15
USChris13
USChris13
USManny30
USManny30

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Please create such a measure:

Sum measure =
VAR temp1 =
    SUMMARIZE (
        Data,
        Data[Region],
        Data[Username],
        "Max logins", MAX ( Data[Logins] )
    )
RETURN
    SUMX ( temp1, [Max logins] )

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

1 REPLY 1
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Please create such a measure:

Sum measure =
VAR temp1 =
    SUMMARIZE (
        Data,
        Data[Region],
        Data[Username],
        "Max logins", MAX ( Data[Logins] )
    )
RETURN
    SUMX ( temp1, [Max logins] )

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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