Lost all of my rows

splacker

New Member
Joined
Dec 1, 2009
Messages
19
I have a sheet with lots of calculations, macros, etc., but while setting up command buttons to hide and unhide rows, all the rows are hidden, and no matter what I try, I can't unhide them. I have a big gray screen with column headers and no row indicators. Please help me.

I have removed all of the vba from the file (It's copied elsewhere), so I need to do something from scratch to get back to my data.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try this:

Press CTRL+A, then go to Format>Row>Unhide
 
Upvote 0
Try running

Code:
Sub seerows()
Rows(1 & ":" & Rows.Count).Hidden = False
End Sub
 
Upvote 0
In your spreadsheet (Not VBA) click on the Blank Rectangular object above Row1 and to the left of Column A - this selects all cells in the entire worksheet. from there Right-click on either Row or column Header - from Short-cut menu left-click UNHIDE!
Hope that helps,,,,,,,,,
Jim
 
Upvote 0
Thanks to both of you. The CTRL-A / format worked. I thought I had tried it before, but obviously I had messed up.

I didn't need the vba tip, but I'll hang on to that information too.

Thanks again.
 
Upvote 0

Forum statistics

Threads
1,224,564
Messages
6,179,544
Members
452,925
Latest member
duyvmex

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