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
Do While Sheets(destsh).Range(reportlocation).Value = ""
Sheets(destsh).Range(reportlocation).EntireRow.UnHidden = True
m = m + 1
reportlocation = "A" + m
Loop