Thread: Hiding Rows
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
SAMURA SAMURA is offline
external usenet poster
 
Posts: 8
Default Hiding Rows

You can use AutoFilter. This is an example.


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


--
Samura


"Tony McGee" wrote in message
...
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?