View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.newusers
Khardy3352 Khardy3352 is offline
external usenet poster
 
Posts: 13
Default hiding multiple lines in excel

Mr Guillet
Thank you . Because I am so new at this, the only macros I have used are
those which I record. My assumption is that once I have the desired columns
hidden, I select tools - macros-create-type a name- copy and paste this in
the window that comes up when I select create. What do I do to taylor it to
my document? I want to add a keyboard shortcut as well (i.e. ctrl+p to open
the view instead of using the menu)

"Don Guillett" wrote:

Sub hiderows()
For i = Cells(rows.Count, "a").End(xlUp).row To 2 Step -3
rows(i).Hidden = True
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Khardy3352" wrote in message
...
I am using custom views from a master document to filter information. I
would
like to hide evry 2nd & 3rd row. Because the document has approx 2000+
rows,
is there a way to do so without recording a macro while I manually hide
every
2nd & 3rd row?

Be kind, I am a rookie