Forum Discussion

rogerthat's avatar
rogerthat
Icon for Helper I rankHelper I
3 years ago

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

  • hi rogerthat 

    try like:

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

    it worked like: