Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
mimigabriel
Regular Visitor

How to sort my fiscal month column e.g. JUL 01 , AUG 01

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

Fiscal Month Number =
IF (
Sales[Month Number] > 6,
Sales[Month Number] - 6,
Sales[Month Number] + 6
)
by creating the above column i sorted the fiscal month. and the output is as shown bleow how can i convert this to the above example. Thank you in advance for your support. 
sreenshoot.PNG
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @mimigabriel ,

I created some data:

vyangliumsft_0-1652415018588.png

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].

vyangliumsft_1-1652415018592.png

4. Result:

vyangliumsft_2-1652415018593.png

 

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

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi  @mimigabriel ,

I created some data:

vyangliumsft_0-1652415018588.png

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].

vyangliumsft_1-1652415018592.png

4. Result:

vyangliumsft_2-1652415018593.png

 

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

mimigabriel
Regular Visitor

@amitchandak  

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 

amitchandak
Super User
Super User

@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)

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.