Forum Discussion
e175429
1 year agoHelper IV
Changing Date Format
Hello all, This is my x-axis, with some of the months cut off because it's too long. Is there any way to change the format to a month/year format like "Jan 23"? Or are we bound to t...
- 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" )
Syk
1 year agoResident Rockstar
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" )
e175429
1 year agoHelper IV
Hey Syk,
How do I get the dates to ascend in order?
- Syk1 year agoResident Rockstar
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.