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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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
Community Champion
Community Champion

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
Community Champion
Community Champion

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 is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.