Sorting in Excel..

  • Thread starter Thread starter maxmouse
  • Start date Start date
M

maxmouse

Sorting a long list of numbers, the list goes so far,
then starts over from the lowest number to complete all
the numbers in it. How can I get the list to sort
completely from 111111 to 511111 without going up that
high with part of the numbers and then starting over at,
say, 111223 and sorting to 500088?
 
Hi
not really sure what you're trying to do. Could you give an example
 
Sorting a long list of numbers, the list goes so far,
then starts over from the lowest number to complete all
the numbers in it. How can I get the list to sort
completely from 111111 to 511111 without going up that
high with part of the numbers and then starting over at,
say, 111223 and sorting to 500088?

It sounds like you want to split the rows into two batches, with the second
batch coming after the first one in sort order.

So you can use an extra "helper" column that identifies the batch. If the
part numbers are in column A and the helper column is H, put in H1 a
formula like:
=IF(AND(A1>111222,A1<500089),2,1)
and extend down for as many rows as you need.

Then "Sort by column H then by column A".
 
If you mean you end up with, essentially, two lists, it probably means that
the data in the 2nd portion is text instead of numbers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top