Sorting a visual axis by month and year

In the Data page (the tab that shows the table data on the left side under the report button) create a column showing the Month Name and Year (i.e. October 2022) Using DAX: Month and Year = FORMAT([Opened Date], "MMMM") & " " & FORMAT([Opened Date], "YYYY") Create another column using the date and format it using only the YYYY-MM (i.e. 2022-10) Using DAX: Month Year Sort = FORMAT([Opened Date], "YYYY-MM") Select the column called 'Month and Year' Select the 'Column tools' tab Click 'Sort by column' button Select 'Month Year Sort' The 'Month and Year' column can now be added to the bar chart (or other visual as needed)