Forum Discussion
67nmark
6 years agoHelper I
DAX calculated column- get previous record value
Hello, I've looked for answers but can't get what I want. Essentially I need a column that brings the value associated with a previous date onto the current row. The image below shows the requirement...
- 6 years ago
Try this
Last Val = CALCULATE(LASTNONBLANK('Table'[Value],'Table'[Value]),FILTER(ALLEXCEPT('Table','Table'[Name]),'Table'[Date]<EARLIER('Table'[Date])))
FarhanAhmed
6 years agoCommunity Champion
Try this
Last Val = CALCULATE(LASTNONBLANK('Table'[Value],'Table'[Value]),FILTER(ALLEXCEPT('Table','Table'[Name]),'Table'[Date]<EARLIER('Table'[Date])))67nmark
6 years agoHelper I
Perfect. Thanks so much 🙂