Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
12 | |
9 | |
9 | |
9 |
User | Count |
---|---|
21 | |
14 | |
14 | |
13 | |
13 |