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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unhide rows

Status
Not open for further replies.

wafs

Technical User
Jan 17, 2006
112
US
I took the code for hiding rows and tried to reverse the code to unhide the rows. It does not work. Does anyone have any suggestions about unhidding rows and the being of code?

Do While Sheets(destsh).Range(reportlocation).Value = ""
Sheets(destsh).Range(reportlocation).EntireRow.UnHidden = True
m = m + 1
reportlocation = "A" + m
Loop
 
this will unide all hidden rows on the sheet
ActiveSheet.Rows.Hidden = False

is that what you're after?

;-)
If a man says something and there are no women there to hear him, is he still wrong? [ponder]
How do I get the best answers?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top