Forum Discussion

KatkaS's avatar
KatkaS
Post Patron
6 years ago
Solved

First value / approval

Hello, could anyone help me please with following:   I have a table where entities are approving a report. Some entities once (MFR), some several times (PHD). I need to calculate the FIRST REPORT...
  • zaza's avatar
    6 years ago

    Youn need the first reported time:

     

     

    First Reported Time = 
        CALCULATE ( 
            MIN ( 'Table'[Update Time] ),
            ALLEXCEPT ( 'Table', 'Table'[Model], 'Table'[Entity], 'Table'[Period] )
        )