I am trying to reorder a fiscal period column from alphabetical order to chronological order. That is, I have this column, which displays values as month-year (showing all distinct values in Query Editor): Period_Name Column
I would like to order this column chronologically, like this: JAN-18, FEB-18, MAR-18, APR-18, etc. in order to use it to plot a time series.
Right now if I try to change the column's data type in Query Editor to Date, it thinks that year is actually the day, and then assumes the year to be the current year (namely 2019); that is, APR-18 becomes April 18, 2019 instead of what it should be, April 2018, with no day (this is a fiscal period column). The custom date and time formats with the FORMAT function (https://docs.microsoft.com/en-us/dax/custom-date-and-time-formats-for-the-format-function) do not appear to recognize the current format that this column is in as month-year, and just spit out the same values back when I try to use it in a new calculated column.
Any help would be much appreciated!