Forum Discussion
Re-ordering the x-axis values
- 9 years ago
You need to use "Sort By Column" in the Modeling tab in the Data Model. So, go to your Data Model, choose your column go to Modeling tab and choose "Sort By Column". In your case, it may make sense to create an Enter Data query and put in your x-axis values along with a "Sort By" column, so something like:
Category,Sort By
<5 min,1
5-15 min,2
15-60 min,3
>60 min,4
Sort your Category column by "Sort By", relate this table to your fact table. Use this Category field in your visual. That's the gist of it.
You need to use "Sort By Column" in the Modeling tab in the Data Model. So, go to your Data Model, choose your column go to Modeling tab and choose "Sort By Column". In your case, it may make sense to create an Enter Data query and put in your x-axis values along with a "Sort By" column, so something like:
Category,Sort By
<5 min,1
5-15 min,2
15-60 min,3
>60 min,4
Sort your Category column by "Sort By", relate this table to your fact table. Use this Category field in your visual. That's the gist of it.
Thanks !!!