tags:

views:

25

answers:

1

One worksheet doesn't show the first 15 rows. I tried the followings, neither worked, even in full-screen mode

  • step 1: F5 (Ctrl+G) to define & select 1:15, set row height to 20 and "unhide row", they are still hiding;

  • Step 2: Put cursor in A16, then up.. till A1 (invisible), select entire row (Ctrl +Shift + ->), hold on shift key, press down arrow, till all 15 rows selected, set height and unhide row, still doesn't work!

How can I get them back?

A: 

Try the following:

Type the first cell reference A1 in the Name Box and press enter. On the Home tab, click on the Format icon Choose Hide & Unhide from the dropdown menu then select Unhide Rows.

You should be able to unhide all of the rows inbetween after that.

James O'Sullivan
Nope, it doesn't work either. I tried the following VBA code, not work either:`Sub test() Dim rng As Range For i = 1 To 15 Set rng = Rows(i) rng.Locked = False rng.RowHeight = 20 rng.Hidden = False Next Set rng = NothingEnd Sub`
PerlDev
Tried all the solutions listed in http://spreadsheets.about.com/od/excelformatting/qt/070814unhiderow.htm, none of them works.
PerlDev