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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
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,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

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