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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.