Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Latest records

I need to return the Most recent contact records rolled up to account level. For example I want this below.

 

The above should be populated from below and onbly return the values assosicated with the max created date

 

 

 

 

  • Anonymous's avatar
    Anonymous
    7 years ago
    Hi Anonymous 
     
    Try this calculated table DAX
     
    New Acct Table =
           FILTER('Acct Table',
                       'Acct Table'[Task Created Date]=CALCULATE(MAX('Acct Table'[Task Created Date]),ALLEXCEPT('Acct Table','Acct Table'[Account])))
    Thanks
    Raj

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable
    Hi Anonymous 
     
    Try this calculated table DAX
     
    New Acct Table =
           FILTER('Acct Table',
                       'Acct Table'[Task Created Date]=CALCULATE(MAX('Acct Table'[Task Created Date]),ALLEXCEPT('Acct Table','Acct Table'[Account])))
    Thanks
    Raj