Identifying Unique ID's in a Single Column

M

MichaelPK

Hello -
I have thousands of ID's in a single column and need to find all ID'
that have a (-#) the # are varied; 1, 2 3 etc... at the end. Sortin
does not work, the -# are at the end of the ID.
Thank You!
 
C

Claus Busch

Hi Michael,

Am Thu, 23 May 2013 16:19:50 +0100 schrieb MichaelPK:
I have thousands of ID's in a single column and need to find all ID's
that have a (-#) the # are varied; 1, 2 3 etc... at the end. Sorting
does not work, the -# are at the end of the ID.

your IDs in column A. Then select A1:An => Conditional Formatting => Use
a formula to determine which cells to format => Formula:
=ISNUMBER(--RIGHT(A1,1)) and select a background color. Now you can
filter by color.


Regards
Claus Busch
 
M

MichaelPK

Claus said:
Hi Michael,

Am Thu, 23 May 2013 16:19:50 +0100 schrieb MichaelPK:
-

your IDs in column A. Then select A1:An => Conditional Formatting =
Use
a formula to determine which cells to format => Formula:
=ISNUMBER(--RIGHT(A1,1)) and select a background color. Now you can
filter by color.


Regards
Claus Busch

Hello Claus - Thank You for your suggestion. As I am dealing with 10'
of thousands of ID's/Rows, filtering does not work. My apologies for no
providing this in the initial post. I have found a solution
=IF(ISNUMBER(FIND("-",A2)),A2,"")
Regards, Michae
 
Top