Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 should start with July 2022, and August 2022........March 2023 and April 2023. Can this be accoplished?
Solved! Go to Solution.
@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
Reformating the date to MMMM YYYYY and changing the axis type to "Categorical" resolved it for me.
Thank u for help!
Reformating the date to MMMM YYYYY and changing the axis type to "Categorical" resolved it for me.
@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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.