Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default How do you unhide the first three rows of a worksheet?

I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default How do you unhide the first three rows of a worksheet?

in my version excel 2003 this way

move mousepointer leftmost just under the kolumnheader where
pointer become to a cross width 2 horisontale lines
press left botton and pull down



"jwwj232" skrev:

I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,327
Default How do you unhide the first three rows of a worksheet?

Excel versions behave differently when it comes to this, which one are you
using ? Anyway, here's a pretty universal macro solution:

Sub Unhidem()
Dim R As Long
For R = 1 To 100
If Rows(R).Hidden = True Then
If MsgBox("Wanna see " & R & " ?", _
vbYesNo + vbQuestion) = vbYes Then
Rows(R).Hidden = False
End If
End If
Next
End Sub

HTH. Best wishes Harald

"jwwj232" skrev i melding
...
I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,089
Default How do you unhide the first three rows of a worksheet?

Press F5 (Go To) | Reference: 1:3 | Format | Row | Unhide

Regards

Trevor


"jwwj232" wrote in message
...
I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default How do you unhide the first three rows of a worksheet?

Can I tell you a short cut key for this?

First press Control + shift
and then presss Control + shift + 9 (not numerical key)

"Trevor Shuttleworth" wrote:

Press F5 (Go To) | Reference: 1:3 | Format | Row | Unhide

Regards

Trevor


"jwwj232" wrote in message
...
I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default How do you unhide the first three rows of a worksheet?

Sorry, first press control + a (to select all)

"Jaleel" wrote:

Can I tell you a short cut key for this?

First press Control + shift
and then presss Control + shift + 9 (not numerical key)

"Trevor Shuttleworth" wrote:

Press F5 (Go To) | Reference: 1:3 | Format | Row | Unhide

Regards

Trevor


"jwwj232" wrote in message
...
I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,073
Default How do you unhide the first three rows of a worksheet?


Has the sheet's scroll area property been altered?

The first three rows will remain hidden if they are not part of the
sheet's scroll area.

Right click that sheet's tab then select "View Code" from the popup
menu. This takes you to the VBA Editor. In the VBA Editor go
View|Properties window. If the ScrollArea value is not blank then you
will have to delete the address to reveal the top three rows.

Ken Johnson

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default How do you unhide the first three rows of a worksheet?

are you sure you dont have the sheet frozen?
go to Window-Unfreeze panes

"jwwj232" wrote:

I tried the steps illustrated in the help file but I am still unable to
unhide the first three rows of a worksheet.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
resetting last cell jagdish.eashwar Excel Discussion (Misc queries) 11 March 31st 06 02:06 AM
How can I transpose rows to columns in a large worksheet? ratchick Excel Discussion (Misc queries) 7 November 11th 05 04:25 PM
rows 1-2 missing from excel worksheet Perplexed Excel Worksheet Functions 1 October 29th 05 03:09 AM
Why can't I unhide rows 1 to 47 in a worksheet? lcarr13 Excel Discussion (Misc queries) 4 July 18th 05 10:08 PM
Protect Worksheet but allow to insert or delete rows Bob L Hilliard Excel Discussion (Misc queries) 2 June 9th 05 02:08 PM


All times are GMT +1. The time now is 11:17 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"