A sorting conundrum

sleepdoc

New Member
Joined
Jul 28, 2005
Messages
41
I have 6 pieces of data in a column

109
109a
109b
110
110a
110b

how do i sort this column of data so it looks like what i am showing here?

Help much appreciated.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You have a combination of numbers and text. Consequently, the numbers will sort above the text.

Try this:
• Select your range of values
• Data.Text-to-Columns...next...next...Check: Text...Finish
• Sort the data.

Does that help?
 
Upvote 0
I have 6 pieces of data in a column

109
109a
109b
110
110a
110b

how do i sort this column of data so it looks like what i am showing here?
The following assumes this is your only data... if that is not the case, you should be able to modify this to include your other data.

Put this formula in the column next to your data...

=IF(ISNUMBER(-RIGHT(A1)),A1&"@",A1)

Then select your data column and column next to it and sort by the column next to it, then clear the column next to your data.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,279
Members
452,630
Latest member
OdubiYouth

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