Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
How can I get the X-axis like below?. I don't want to see full month name like January, February, etc.
Thanks in advance
Solved! Go to Solution.
Hi @Kunder ,
Create a year_month number column based on the month name, then select the month name column, click sort by column button, and select sort by month number.
Year_Month number = Year(Sheet2[Date])*100+MONTH(Sheet2[Date])
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kunder ,
Create a year_month number column based on the month name, then select the month name column, click sort by column button, and select sort by month number.
Year_Month number = Year(Sheet2[Date])*100+MONTH(Sheet2[Date])
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Kunder Create a new column like:
Column = LEFT('Table'[Month Name],3)
@Greg_Deckler - I can do that but data doesn't display in sorted order.. Eg: Jan, Feb, Mar, etc.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.