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

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.

Reply
Vinay06
Frequent Visitor

Arrange Labels in Order

Hi, i want arrange labels in the visual in proper order. I tried changing its data type to number but its showing error.Can someone help me in solving it?  I want it in order <30,30-45,>45

Screenshot (31).png

1 ACCEPTED SOLUTION
mussaenda
Super User
Super User

Hi @Vinay06 ,

 

You can create column (either in dax or power query)

 

For Power Query,

if [YourColumnName] = null
then 0
else

if [YourColumnName] = "<30"
then 1
else

if [YourColumnName] = "30-45"
then 2
else

if [YourColumnName] = ">45"
then 3
else

4

 

then apply data

select [YourColumnThatYouWantToArrange]

then Column Tools

then Select Sort By Column

then choose the column you just created.

 

Hope this helps!

View solution in original post

1 REPLY 1
mussaenda
Super User
Super User

Hi @Vinay06 ,

 

You can create column (either in dax or power query)

 

For Power Query,

if [YourColumnName] = null
then 0
else

if [YourColumnName] = "<30"
then 1
else

if [YourColumnName] = "30-45"
then 2
else

if [YourColumnName] = ">45"
then 3
else

4

 

then apply data

select [YourColumnThatYouWantToArrange]

then Column Tools

then Select Sort By Column

then choose the column you just created.

 

Hope this helps!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.

Top Kudoed Authors