Forum Discussion
Sort by another column issue - already sorted?
- 6 years ago
Hi Lenerius
I just came across the same error!
For me the issue was that I was using DAX to definine a column (call it A) using another DAX defined column (call it B). Because A is sorted by itself by default, and A is defined by B, asking to sort B by A results in a circular reference. To fix this I redefined my DAX so that both A and B were sorted by an original table column, then everything worked fine!
Hope that helps!
Quinn
Hi Lenerius
I just came across the same error!
For me the issue was that I was using DAX to definine a column (call it A) using another DAX defined column (call it B). Because A is sorted by itself by default, and A is defined by B, asking to sort B by A results in a circular reference. To fix this I redefined my DAX so that both A and B were sorted by an original table column, then everything worked fine!
Hope that helps!
Quinn
- Anonymous6 years agoNot applicable
QuinnPThanks! That ended up being my solution as well! Thanks for sharing!