Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
| DATE | Score | Expected Result: Max Score for Date |
| 4/1/2023 | 10 | 40 |
| 4/1/2023 | 20 | 40 |
| 4/1/2023 | 30 | 40 |
| 4/1/2023 | 40 | 40 |
| 5/9/2023 | 2 | 2 |
| 5/10/2023 | 1 | 5 |
| 5/10/2023 | 5 | 5 |
| 5/11/2023 | 6 | 6 |
| 5/12/2023 | 5 | 7 |
| 5/12/2023 | 7 | 7 |
Is there a way to have this in a Calculated column and not measure?
hi @rogerthat
try like:
Column =
MAXX(
FILTER(
data,
data[Date]=EARLIER(data[Date])
),
data[Score]
)it worked like:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 8 | |
| 8 |