Is there an easy way to sort feet and inches?

figuare9

Board Regular
Joined
Oct 23, 2017
Messages
118
I'm trying to figure out how to easily sort feet and inches.

Let's say I have a column with only feet..

IE:

34'
355'
154'
1503'
14' 6"
10' 7"
50'



How could I sort this? I want to go greatest to least, and least to greatest. However, I'm having a hard time figuring this one out.. :( Any tips?

Trying to avoid any formulas, or converting it to a decimal or inches and then sorting.. Tips?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
How are the numbers entered? If they are manually entered, you can just them as a fraction. If it's a whole number, like 34, then just enter 34 (no '). If it's a fraction, enter 14 space 6/12. You may want to put a custom format of "# ??.12" on that column. When you enter numbers that way, they are entered as numbers, and you can sort them. If those are really text values, manually entered or otherwise, you'd probably need a helper column to convert the values to numbers, then sort by that.
 
Upvote 0
If you use a helper column then you can use a formula then sort.

something like.

Code:
=(IFERROR(LEFT(A1,FIND("'",A1)-1)+MID(A1,FIND("'",A1)+1,2)/12,LEFT(A1,FIND("'",A1)-1)))*12
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,718
Members
448,986
Latest member
andreguerra

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top