Forum Discussion

Leon1213's avatar
Leon1213
Frequent Visitor
7 years ago
Solved

Lookup for the latest value

Hi all,   I have 2 tables.   Table1: ID     Type 1         A 2         B 3         C Table2: Type    value    timestamp A             2         01-09-2018 15:51 A             4         01...
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    7 years ago

    Leon1213

     

    Infact this formula is simpler and should work as well

     

     

    lastest_value =
    CALCULATE ( SUM ( Table2[value] ), LASTNONBLANK ( Table2[timestamp], 1 ) )