VBA Filter?

N

Newbie

I would like to show only rows where column E (5?) is not zero. Can anybody show me how to do that?
 
C

Claus Busch

Hi,

Am Fri, 3 Aug 2012 09:50:51 -0700 (PDT) schrieb Newbie:
I would like to show only rows where column E (5?) is not zero. Can anybody show me how to do that?

ActiveSheet.Range("A1").AutoFilter Field:=5, _
Criteria1:="<>0", Operator:=xlAnd


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