Forum Discussion

Dunner2020's avatar
Dunner2020
Icon for Post Prodigy rankPost Prodigy
5 years ago
Solved

Maximum Value for measure

Hi there, I have data which looks like as follow:       Column A,B, C, D are given.  Column C is the 'Epoch Half Hour Number' which is a unique Id for a half-hour time period. Column E i...
  • v-janeyg-msft's avatar
    5 years ago

    Hi, Dunner2020 

     

    It’s my pleasure to answer for you.

    Your data seems a bit confusing, but I still try to calculate the maximum(range is 24h)value from your data, First create an index table,then create a measure

    Like this:
    First create an index table

    Measure 2 =
    MAXX (
        FILTER (
            ALL ( 'Table' ),
            [Index] >= SELECTEDVALUE ( 'Table'[Index] )
                && [Index]
                    <= SELECTEDVALUE ( 'Table'[Index] ) + 23
        ),
        'Table'[Past 24 hrs Values]
    )

    If it doesn’t solve your problems, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.