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.
I am working with deliquency and I am trying to organize the alphanumeric groups
This is how looks now
0-15 days
120-150 days
59-90 days
and I am trying to sorted numerically
0-15 days
59-90 days
120-150 days
Please help 😞
Solved! Go to Solution.
Hi @BeginnerBI
you add a calculated column:
Index =
SWITCH (
'Table'[Column],
"0-15 days", 1
"59-90 days", 2
"120-150 days", 3
)
Select [Column] go to column options then use the (sort by column) option and select [Index]
Hi @BeginnerBI
you add a calculated column:
Index =
SWITCH (
'Table'[Column],
"0-15 days", 1
"59-90 days", 2
"120-150 days", 3
)
Select [Column] go to column options then use the (sort by column) option and select [Index]
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.