Forum Discussion
Anonymous
4 years agoNot applicable
Unique value Index (duplicates are same)
How would I create a unique value index with Dax code? I am in the process of creating a ragged heirachy using a Tabular model so it has to be done using DAX code (I can't use PQ, etc). What I am loo...
- 4 years ago
Anonymous It seems simpler to me like this:
Index Column = RANKX ( Table, Table[Item],, ASC, DENSE )
Try it!
B.
BeaBF
Super User
4 years agoAnonymous It seems simpler to me like this:
Index Column = RANKX ( Table, Table[Item],, ASC, DENSE )
Try it!
B.
- Anonymous4 years agoNot applicable
Thanks, at first glance this looks to work. I have 57k rows though so I need to make sure that its consistent.