hello!

  • Thread starter Thread starter asorina
  • Start date Start date
A

asorina

i want to select in a column, all number that are compose in 3 digits?
 
In a helper column you can have a formula like this:

=IF(LEN(A1)=3,"Yes","No")

or like this if your numbers are proper numbers:

=IF(AND(A1>=100,A1<1000),"Yes","No")

Copy the formula down the helper column, then apply autofilter to that
column, selecting Yes from the filter pull-down.

Hope this helps.

Pete
 
Pete_UK said:
In a helper column you can have a formula like this:

=IF(LEN(A1)=3,"Yes","No")

or like this if your numbers are proper numbers:

=IF(AND(A1>=100,A1<1000),"Yes","No")

Copy the formula down the helper column, then apply autofilter to that
column, selecting Yes from the filter pull-down.

Hope this helps.

Pete




Thank's,
it's works!
Have a nice day!
 

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

Similar Threads


Back
Top