Forum Discussion
stribor45
3 years agoPost Prodigy
Line Chart - x axis
I have the table where my data column looks like this but my visual is showing data ordered by months (January comes before December) I would like the first data point to be the oldest one. So x-axis...
- 3 years ago
stribor45 , better use year of axis and expand and switch off concatenate label -off
Or sort your month on this column
month = if(month([Date]) <7, month([Date])+6 , month([Date])-6)
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c - 3 years ago
Reformating the date to MMMM YYYYY and changing the axis type to "Categorical" resolved it for me.
stribor45
3 years agoPost Prodigy
Reformating the date to MMMM YYYYY and changing the axis type to "Categorical" resolved it for me.