Forum Discussion

kasife's avatar
kasife
Helper V
3 years ago
Solved

Most recent date considering 2 parameters

Hi Guys, How could I get the last date considering 2 columns: the project and the project module? For example, in the table below, I need to consider the last date of the Module (M1) of the Subproj...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi kasife ,

     

    According to your description, here are my steps you can follow as a solution.

    (1) This is my test data.  

    (2) We can create a measure.

     

    _Ultima Data do repasse =
    CALCULATE (
        MAX ( 'f_reaal_realizado'[Data Repasse] ),
        FILTER (
            ALLEXCEPT (
                'f_reaal_realizado',
                'f_reaal_realizado'[Subproject],
                'f_reaal_realizado'[Module]
            ),
            'f_reaal_realizado'[Data Repasse]
        )
    )
    

     

    (3) Then the result is as follows.

     

    Best Regards,

    Neeko Tang

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