Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel: Make rows in a range visible

Status
Not open for further replies.

sjh

Programmer
Oct 29, 2001
263
US
Hi,
I want to make any hidden rows in a range (or a sheet) visible again. I tried the following code, but it takes a long time to be executed. Is there a faster way?

For Each c In wPrjList.Range("myRange")
c.EntireRow.Hidden = False
Next c

Thanks!!!
 
Hi sjh,

No need for a loop. Try doing the whole range at once:

Code:
wPrjList.Range("myRange").EntireRow.Hidden = False

Enjoy,
Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top