Forum Discussion
Anonymous
6 years agoNot applicable
Line Chart sort x-axis by y-axis
Hi I have a table consiting of Sellers, MFGs and Partnumbers. It looks like so: _____________________________ Id1 | Seller1 | MFG1 | Part1 Id2 | Seller2 | MFG2 | Part1 Id3 | Seller3 | MF...
- 6 years ago
Hi Anonymous ,
How about add a Rank column in your table, like so:
Rank column = RANKX ( 'Table', CALCULATE ( DISTINCTCOUNT ( 'Table'[MFG] ) + SUM ( 'Table'[ID] ) / 10000, ALLEXCEPT ( 'Table', 'Table'[Seller] ) ), , DESC, DENSE )Then, create the bar visual with "Rank column".
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Icey
6 years agoCommunity Support
Hi Anonymous ,
Thank you for your reminding, indeed, when encountering large indexs, this may be problematic. You can adjust according to your actual data.
Best Regards,
Icey