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.
Hello Power bi Coummuntiy
I real want to sort the fiscal month column e.g
JUL 01 , AUG 01 ,SEP 01, OCT 01, NOV 01, DEC 01 then it continue like jan 02 feb 02
Solved! Go to Solution.
Hi @mimigabriel ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Fiscal Month =
FORMAT('Table'[Date],"mmm") &" "& FORMAT('Table'[Date],"dd")
rank =
FORMAT([Date],"ddmm")
2. Create calculated table.
Table 2 = SUMMARIZE('Table','Table'[Date],'Table'[Fiscal Month],'Table'[rank])
3. Click [Fiscal Month] – sort by column – [rank].
4. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @mimigabriel ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Fiscal Month =
FORMAT('Table'[Date],"mmm") &" "& FORMAT('Table'[Date],"dd")
rank =
FORMAT([Date],"ddmm")
2. Create calculated table.
Table 2 = SUMMARIZE('Table','Table'[Date],'Table'[Fiscal Month],'Table'[rank])
3. Click [Fiscal Month] – sort by column – [rank].
4. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thank you so much was very helpful
thank you for your quick replay
but the output i want to see is as follow JUL 01 , AUG 01 ,SEP 01, OCT 01, NOV 01, DEC 01 then it continue like jan 02 feb 02
please let me know if you have any idea
thank you
@mimigabriel , this for a month name
Month= FORMAT([Date],"mmm")
Month sort = if(month([Date]) <=6, month([Date]) +6 ,month([Date]) -6)
Month Year = FORMAT([Date],"mmm-yyyy")
Month Year sort =if(month([Date]) <=6, year([Date]) -1 ,Year([Date])) *100 + if(month([Date]) <=6, month([Date]) +6 ,month([Date]) -6)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |