Forum Discussion

BiBra's avatar
BiBra
Helper III
8 years ago
Solved

latest Values

Hello, I am trying to find out how to get the latest values. Dummy data:   Name                Date                  Value 1            value2       value 3 sd                    12/10-2017       ...
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    8 years ago

    BiBra

     

    NOw you can use this MEASURE

     

    Value at Recent Date =
    CALCULATE (
        SUM ( TableName[Value] ),
        FILTER ( TableName, TableName[Date] = MAX ( TableName[Date] ) )
    )