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
rogerthat
Helper I
Helper I

Max Value for Score of Same Date

Hi,

 

I have a table that contains a DATE & Score. However, I want to be able to get the highest score [Expected Result] of that day and apply it in a seperate column as shown below:

DATEScore Expected Result: Max Score for Date
4/1/20231040
4/1/20232040
4/1/20233040
4/1/20234040
5/9/202322
5/10/202315
5/10/202355
5/11/202366
5/12/202357
5/12/202377

 

Is there a way to have this in a Calculated column and not measure?

1 REPLY 1
FreemanZ
Super User
Super User

hi @rogerthat 

try like:

Column = 
MAXX(
    FILTER(
        data, 
        data[Date]=EARLIER(data[Date])
    ),
    data[Score]
)

it worked like:

FreemanZ_0-1683857317065.png

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.