Forum Discussion
Changing Date Format
- 1 year ago
You can format the date a ton of different ways by creating a new column. This should give you what you want.
Date Format = FORMAT ( 'Date'[Date], "mmm" ) & " " & FORMAT ( 'Date'[Date], "yy" )
There are different options to sort. If you select the chart and select the "..." in the top right, you can sort on different fields/values. You may also need to order your new column by your date column to ensure it's getting the correct order. Select your column and the column tools should pop up allowing you to sort your new column.
Sorry, I should've been more specific.
When I try to order the new column by Date I get this message:
I'm only given 2 options to sort the axis itself. This is one:
And this is the other:
- Syk1 year agoResident Rockstar
Try ordering it by your month-year sort column.
- e1754291 year agoHelper IV
I did not get a error but it's still out of wack.
- Syk1 year agoResident Rockstar
Your year month sort column is sorted alphabetically. You need a Year Month Code to properly sort.
Year Month Code = FORMAT('Date'[Date],"YYYYMM")Then sort your columns by this and you should be good to go.