Forum Discussion

patoku0207's avatar
patoku0207
Frequent Visitor
4 years ago
Solved

Max for date and time 2 columns

Hello,  First,sorry for my english, I'm french. This forum is incredible and very helpful. I'm new and I need help for a calculated column. I'm trying to find the value for a max date and time wi...
  • tackytechtom's avatar
    4 years ago

    Hi patoku0207 ,

     

    Just so I understand correctly, you would like to return the balance per item and number which has the highest date. If two dates are equal, then we shall take the higher time. If even these two times are equal, we shall take the higher time suffix. For the calculation we must not consider the rows with number = 999999999.

     

    This is my result:

     

    This is the measure I used:

    TomsBalanceMeasure = 
    VAR _maxValue = 
    CALCULATE (
        MAXX ( Table, Value( Table[date] & Table[time] & Table[suffix time] ) ),
        ALLEXCEPT ( Table, Table[Item] ),
        Table22[number] <> 999999999
    )
    RETURN
    CALCULATE ( 
      MAX ( Table[balance] ), 
        VALUE ( Table[date] & Table[time] & Table[suffix time] ) == _maxValue  
    )

     

    Does this solve your issue? 🙂

     

    /Tom

    https://www.tackytech.blog/

    https://www.instagram.com/tackytechtom/