How to unhide rows....when they won't unhide

M

Mike C

I am having a repeated problem.

I receive files that has hidden rows. When I Rclick and select
unhide, they are still hidden. When I select Format, Row, Unhide,
they are still hidden.

The only way to unhide them seems to be to double click each
individual hidden row.

Does anyone know a better way to do this?

Am I completely missing something?

Thanks
 
B

Bernard Liengme

Not sure how you double click a hidden row.
If rows 9 and 10 are hidden , I select the row headers 8 and 11, right click
and use Unhide.
Does this not work for you?
best wishes
 
D

Don Guillett

Sub unhidecells()
With ActiveSheet
..Rows.Hidden = False
..Rows.AutoFit
..Columns.Hidden = False
..Columns.AutoFit
End With
End Sub
 
T

Terri Chapman

I ran into another wrinkle on this. I had hidden column A on a sheet and it would not unhide. Filtering and column width of zero weren't the problem either. Drive me crazy. Turned out once I unfroze the pane I had set I could Go To A1 and unhide co1. A.
 
T

Terri Chapman

I ran into another wrinkle on this. I had hidden column A on a sheet and it would not unhide. Filtering and column width of zero weren't the problem either. Drove me crazy. Turned out once I unfroze the pane I had set I could Go To A1 and unhide co1. A.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

rows won't unhide 5
Hide Unhide Button 4
Unable to unhide hidden columns 3
form buttons on sheet collapse on unhide - sometimes 5
Unhide in a macro 6
Unhide column difficulty 3
UnHide rows? 6
Unhide Column 5

Top