Forum Discussion
Anonymous
7 years agoNot applicable
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
- Anonymous7 years agoHi AnonymousTry 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])))ThanksRaj
1 Reply
- AnonymousNot applicableHi AnonymousTry 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])))ThanksRaj