Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi Guys,
I'm fairly new to Power BI and I'm tryng to create a small dashboard for a client. the problem is when using my data on a line graph, if selected 1 month, the dates are in chronological order, however, if I do beggining of the year to date the months show un sorted. see picture below.
Solved! Go to Solution.
Create a new column using this DAX formula :
YearMonthInt = <tablename>[Date].[Year]*100 + <tablename>[Date].[MonthNo]
Then, select the Date column > In the Modelling tab, select 'Sort By Column' option and sort the Date column by the new Column u created.
Create a new column using this DAX formula :
YearMonthInt = <tablename>[Date].[Year]*100 + <tablename>[Date].[MonthNo]
Then, select the Date column > In the Modelling tab, select 'Sort By Column' option and sort the Date column by the new Column u created.
I highlighted the arrows that you should click