Forum Discussion
Taranggupta
8 years agoNew Member
How to get previous row value for text column.
Hi, I would like to get the previous row value for a text column using DAX. Example: Text_column A B C Expected Output: ...
- 8 years ago
In DAX, there's no order internally for records in table. You have to add an index column in your table.
PreviousText = CALCULATE(MAX(Table1[Text]),FILTER(Table1,Table1[Index]=EARLIER(Table1[Index])-1))
Regards,
v-sihou-msft
Microsoft Employee
8 years ago
In DAX, there's no order internally for records in table. You have to add an index column in your table.
PreviousText = CALCULATE(MAX(Table1[Text]),FILTER(Table1,Table1[Index]=EARLIER(Table1[Index])-1))
Regards,
- Anonymous8 years agoNot applicable
Hi,
v-sihou-msft I am trying to replicate this and have added the index column, but getting a row context error from the EARLIER function onwards:
previous index = CALCULATE(MAX('Curso Académico'[Curso]);FILTER('Curso Académico';'Curso Académico'[Index]=EARLIER('Curso Académico'[Index]))Any ideas what I'm doing wrong?
Thanks!
- dartmana6 years agoRegular Visitor
...
is the -1 missing at the end?
previous index = CALCULATE(MAX('Curso Académico'[Curso]);FILTER('Curso Académico';'Curso Académico'[Index]=EARLIER('Curso Académico'[Index])-1))