View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Alternative way to refer to a row to hide or unhide...

Assign a Named Range to the rows and use the name:



Sub demo()
Range("ready_for_hide").EntireRow.Hidden = True
End Sub




The named cells will adjust as rows are added or deleted.
--
Gary''s Student
gsnu200706


"Darin Kramer" wrote:



Hi There,

I currently have a simple VB that selects data in row 60 and 61 (see
below). Problem is that if a user adds lines (and its quite possible
that he may) the macro will not hide the correct row. Is there VB to
hide a named range...?

Kind regards

Darin

Rows("60:61").Select
Selection.EntireRow.Hidden = True

*** Sent via Developersdex http://www.developersdex.com ***