Macro to filter out lines

  • Thread starter Ian / ArtistGuitars.com.au
  • Start date
I

Ian / ArtistGuitars.com.au

Hi I have written some macros and im having a problem excludinjg certain
lines in my worksheet.

I use the filter option. But I want to be able to filter out lines that
have"*" in them using a macro.

How do I change the filter to "not equal" ?

Ian / Artistguitars.com.au
..
 
F

Francis

Pls post your codes in order for us to ascertain the required changes.
--
Hope this help

Please click the Yes button below if this post have helped answer your needs

Thank You

cheers, francis
 
G

Gary Keramidas

it's hard to say what you want.

..AutoFilter field:=1, Criteria1:="<>", Operator:=xlAnd

but i suggest you do a replace of the asterisk because it's a valid
wildcard. i used the ! here.

ActiveSheet.Range("$A$5:$K$228").AutoFilter Field:=5, Criteria1:= _
"<>*" & "!" & "*", Operator:=xlAnd
this would filter all records that do not have an !.
--


Gary Keramidas
Excel 2003


"Ian / ArtistGuitars.com.au" <Ian /
(e-mail address removed)> wrote in message
news:[email protected]...
 
D

Dave Peterson

Either use:
Equals (or does not equal):
~*
(for an exact match of the asterisk)

Or use:
Contains (or does not contain):
~*

The tilde tells excel to treat the asterisk as an asterisk--not a wild card.

Same thing with the single character ? (use ~?) and tilde ~ (use ~~).

And Edit|Find uses the same technique, too.

========
 

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