Can I filter cell that have only 0-9 number in it?

L

lazyx

Hi,

Can I filter cell that have only 0-9 number in it?

I mean that I have 1 column like below:

samsung
samsung galaxy s2
samsung galaxy
samsung galaxy tab
samsung galaxy nexus
samsung galaxy note
samsung infuse
samsung galaxy tab 10.1
samsung tv
samsung galaxy s3
samsung galaxy s

I want to filter cells that have any number in it (0-9). So, the en
result should shows only :

samsung galaxy s2
samsung galaxy tab 10.1
samsung galaxy s3


I'm newbie here. Please teach me.

Thank you
 
C

Claus Busch

Hi,

Am Fri, 13 Jul 2012 03:48:45 +0000 schrieb lazyx:
samsung
samsung galaxy s2
samsung galaxy
samsung galaxy tab
samsung galaxy nexus
samsung galaxy note
samsung infuse
samsung galaxy tab 10.1
samsung tv
samsung galaxy s3
samsung galaxy s

I want to filter cells that have any number in it (0-9). So, the end
result should shows only :

your products in column A from A2 on. Then make a helper column with the
formula:
=COUNT(FIND({1;2;3;4;5;6;7;8;9;0},A2))>0
and filter the helper column for TRUE


Regards
Claus Busch
 
C

Claus Busch

Hi,

Am Fri, 13 Jul 2012 10:03:17 +0200 schrieb Claus Busch:
your products in column A from A2 on. Then make a helper column with the
formula:
=COUNT(FIND({1;2;3;4;5;6;7;8;9;0},A2))>0

change the formula to:
=COUNT(FIND({1,2,3,4,5,6,7,8,9,0},A2))>0


Regards
Claus Busch
 

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

Top