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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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
Solved! Go to Solution.
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!
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!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 14 | |
| 12 | |
| 7 | |
| 6 |