Custom filter

  • Thread starter BNT1 via OfficeKB.com
  • Start date
B

BNT1 via OfficeKB.com

Hi

In a column i have the following example

307
307,607
105,122,151,307,451
405
626

etc

How can I filter to show all those woth 307. In this case, the top 3 records

Thanks in advance
Regards

Brian
 
A

Amy Brooks

Try using Data-> Filter-> AutoFilter, then when you click to set the filter,
choose Custom, and choose 'contains' and type 307
 
J

Jarek Kujawa

use a helper column with this formula:

=IF(ISERROR(FIND("307",A1)),"","incl. 307")

then apply an autofilter on "incl. 307"

pls click YES if it helped
 
B

BNT1 via OfficeKB.com

Hi

thanks

This did work, although the other post was easier, it did not work for me

Not sure where the "yes button" is?



Jarek said:
use a helper column with this formula:

=IF(ISERROR(FIND("307",A1)),"","incl. 307")

then apply an autofilter on "incl. 307"

pls click YES if it helped
[quoted text clipped - 17 lines]
 
D

David Biddulph

Ignore these time-wasting references to a "Yes" button. That applies only
to people who post to the newsgroup via Microsoft's web interface, so it has
no relevance to people who access the newsgroup by normal methods.
--
David Biddulph

BNT1 via OfficeKB.com said:
Hi

thanks

This did work, although the other post was easier, it did not work for me

Not sure where the "yes button" is?



Jarek said:
use a helper column with this formula:

=IF(ISERROR(FIND("307",A1)),"","incl. 307")

then apply an autofilter on "incl. 307"

pls click YES if it helped
[quoted text clipped - 17 lines]
 
Top