Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
hi Team,
How to sort the month in fabric?
Is there any option to sort the month in chronological order in fabric ?
Solved! Go to Solution.
@Partha2318
Or try below method create calculated columnMonth Number = MONTH('Table'[Date])
or
Month Number = FORMAT('Table'[Date],"MM")
if you use the latter , change the data type to whole number after
after you create your month number , press on the month name column and in the ribbon above in the table tools , you will find something called sort by column , press it and choose month number
I hope I answered your question!
Hi @Partha2318 ,
Thank you @Uzi2019 for the quick response and solution. I have an alternative approach for you to consider:
We can create a new table.
MyTable = DATATABLE (
"Month", STRING,
"Number", INTEGER,
{
{"January", 1},
{"February", 2},
{"March", 3},
{"April", 4},
{"May", 5},
{"June", 6},
{"July", 7},
{"August", 8},
{"September", 9},
{"October", 10},
{"November", 11},
{"December", 12}
}
)
Create the model relationship.
Select the Month column of the [MyTable] table and sort by [Number].
Place the [Month] field of the [MyTable] table instead of the [Month_txt] field of the DimDate table on the visual object.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Ensure that you have a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort the Month name by the Month number. Create a relationship (many to one and single) from the Date column of your Data Table to the Date column of the Calendar Table. To your visual, drag Year and Month name from the Calendar Table.
Hope this helps.
Hi,
Ensure that you have a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort the Month name by the Month number. Create a relationship (many to one and single) from the Date column of your Data Table to the Date column of the Calendar Table. To your visual, drag Year and Month name from the Calendar Table.
Hope this helps.
Hi @Partha2318 ,
Thank you @Uzi2019 for the quick response and solution. I have an alternative approach for you to consider:
We can create a new table.
MyTable = DATATABLE (
"Month", STRING,
"Number", INTEGER,
{
{"January", 1},
{"February", 2},
{"March", 3},
{"April", 4},
{"May", 5},
{"June", 6},
{"July", 7},
{"August", 8},
{"September", 9},
{"October", 10},
{"November", 11},
{"December", 12}
}
)
Create the model relationship.
Select the Month column of the [MyTable] table and sort by [Number].
Place the [Month] field of the [MyTable] table instead of the [Month_txt] field of the DimDate table on the visual object.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Partha2318
If you have month number in your data so you can sort the month by month number.
or refer below video
https://www.youtube.com/watch?v=NvFDasTzP9E
I hope I answered your question!
@Partha2318
Or try below method create calculated columnMonth Number = MONTH('Table'[Date])
or
Month Number = FORMAT('Table'[Date],"MM")
if you use the latter , change the data type to whole number after
after you create your month number , press on the month name column and in the ribbon above in the table tools , you will find something called sort by column , press it and choose month number
I hope I answered your question!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
70 | |
43 | |
31 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |