Problems with Rows being hidden

SusanK

New Member
Joined
Jan 26, 2004
Messages
2
How can I stop rows from being hidden at the side of a spreadsheet. Each time I open the Spread, a lot of the rows are hidden and I have to spend time making them viewable again. Even after saving the spreadsheet in its current state, next time when opened they have reverted back to being hidden. Any help would be great.
Thanks
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Save this in a module at it will unhide the rows on open;

Code:
Sub auto_open()
    Rows("1:65536").Hidden = False
End Sub
 
Upvote 0
I can't explain why your rows keep coming up hidden, but I can give you a shortcut to unhide them. It sounds like you are unhiding one at a time.

Just click on the top left corner of the sheet to highlight the entire sheet. Then right click on the actual sheet, doesn't matter where as long as it the spreadsheet portion. Select unhide from the menu. This will unhide ALL hidden rows on the spreadsheet.

Hope this helps.
 
Upvote 0
Cbrine said:
I can't explain why your rows keep coming up hidden

I assumed you were working on a shared workbook.

Your not pressing control 9 are you (the shortcut for hide row) instead of shift 9?
 
Upvote 0
Yes I am working on a Shared Workbook and No not pressing anything. The worksheet is opening with the rows hidden and when i 'unhide ' them all and make changes and resave, once closed and re-opened its back to the hidden rows again
 
Upvote 0
It may have something to do with the Shared workbook settings. go to Tools - Share Workbook go to the Advanced Tab and see if Include in personal views Print Settings and Filter Settings are checked.
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,212
Members
448,874
Latest member
b1step2far

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top