Angela,
=MID(A1,6,2) will return the 6&7th characters.
If you do this on an adajcent column, you can then sort by this column
--
Kiera
Born ignorant and still perfecting the ar
Angela - 13 Oct 2004 00:11 GMT
Thanks Kieran !
:)
>Angela,
>
>=MID(A1,6,2) will return the 6&7th characters.
>
>If you do this on an adajcent column, you can then sort by this column.
You may want to separate the values into different columns, too.
Insert 4 columns to the right of this column.
data|text to columns
fixed width
and plop it into that adjacent column.
You could format those helper columns:
format|cells|number tab
custom
00
It might make it easier for the next project.
> Hello,
> I have a gigantic spreadsheet, and its all 8 numbers.
[quoted text clipped - 31 lines]
>
> I tried =RIGHT(a:a14000,4) <6, (>10))

Signature
Dave Peterson
ec35720@msn.com
Angela - 13 Oct 2004 00:11 GMT
Dave,
Many Thanks !
>You may want to separate the values into different columns, too.
>
[quoted text clipped - 45 lines]
>>
>> I tried =RIGHT(a:a14000,4) <6, (>10))
One way ..
Assuming data is in Sheet1 A2:A14000
Put in B2: =IF(ISNA(MATCH(MID($A2,5,2),{"07"},0)),"",ROW())
Put in C2: =IF(ISNA(MATCH(MID($A2,5,2),{"08"},0)),"",ROW())
Put in D2: =IF(ISNA(MATCH(MID($A2,5,2),{"09"},0)),"",ROW())
Select B2:D2, copy down to D14000
In Sheet2
--------------
Put in A2:
=IF(ISERROR(MATCH(SMALL(Sheet1!B:B,ROW(A1)),Sheet1!B:B,0)),"",OFFSET(Sheet1!
$A$1,MATCH(SMALL(Sheet1!B:B,ROW(A1)),Sheet1!B:B,0)-1,))
Copy across to C2, fill down until blanks appear for all 3 cols A to C
Col A will extract all the o7's, Col B will extract all the o8's, and
Col C will extract all the o9's
For the sample data in the post,
it'll appear in cols A to C as:
40010701 42060801 42080901
40010702 42060802
43030802

Signature
--
Rgds
Max
xl 97
---
Please respond in thread
xdemechanik <at>yahoo<dot>com
----
> Hello,
> I have a gigantic spreadsheet, and its all 8 numbers.
[quoted text clipped - 31 lines]
>
> I tried =RIGHT(a:a14000,4) <6, (>10))
Max - 12 Oct 2004 04:35 GMT
> We are trying to sort only levels 07, 08, and 09.
> All the rest can be discarded....
Clarification: The suggested set-up was focusing on the above lines

Signature
--
Rgds
Max
xl 97
---
Please respond in thread
xdemechanik <at>yahoo<dot>com
----
Angela - 13 Oct 2004 00:12 GMT
Max,
Thanks !
Everyone here is so helpful, this is the best newsgroup !
:)
>One way ..
>
[quoted text clipped - 24 lines]
>40010702 42060802
> 43030802
Max - 13 Oct 2004 01:47 GMT
> Max,
> Thanks !
> Everyone here is so helpful, this is the best newsgroup !
> :)
You're welcome, Angela !
And thanks for the feedback
Trust what was suggested to your post
worked for you .. that's important, too <g>

Signature
--
Rgds
Max
xl 97
---
Please respond in thread
xdemechanik <at>yahoo<dot>com
----