Hiding Rows

  • Thread starter Thread starter Tony McGee
  • Start date Start date
T

Tony McGee

Hello

How do I hide a row based upon a value in a specific column (eg hide all
rows where the cell in column G is blank) & allow for user input to specify
the column?

Thanks

Tony
 
You can use AutoFilter. This is an example.


Range("G1").Select
Selection.AutoFilter Field:=7, Criteria1:="<>"
 

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