Forum Discussion
Anonymous
6 years agoNot applicable
Index Calculated columns
Hi I need to add the calculated index column to the table by a DAX formula. Rgds Henrik
- Anonymous6 years ago
Hi Anonymous,
It seems like a multiple column sort recruitment, maybe you can take a look at following thread about using isonorafter to sort multiple columns:
Regards,
Xiaoxin Sheng
az38
6 years agoCommunity Champion
Hi Anonymous
Try a column
Index =
RANKX (
FILTER('Table','Table'[A] = EARLIER('Table'[A])),
'Table'[KEY]
)- Syndicate_Admin4 years agoAdministrator
it works perfectly. Thanks.