How to I advance filter to remove rows containing partic string of text?

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Is this possible?

I know how to filter to include strings of text but I don't know how
to filter so that rows containing a certain email address domain name
are not visible in the filetered results.

Many thanks if anyone's able to assist!

Dave
 
Hi
one way: use a helper column with a formula like
=IF(ISNUMBER(FIND("domain.com",A1)),1,0)
and filter with this column
 
Dear Dave

Set the Auto filter feature on, then on the column header
for the column that contains the domain names, select
custom from the drop down. In the first drop down in the
dialogue box, select Does not contain from the list and
then in the second box either select the relevant name
from the list or type it straight in.

Hope this helps

Paul Falla
 
In the criteria area, add the same heading as in the source table, for
the column that contains the email address.
In the cell below, use the not equal operator: <>
and the * wildcard character with the email address.
For example:

Email
<>*microsoft.com*
 

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

Back
Top