Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Excel - viewing hidden rows

How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular row or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Excel - viewing hidden rows

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Excel - viewing hidden rows

Yes, that's correct; however, is there a command that will do it all in one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Excel - viewing hidden rows

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Excel - viewing hidden rows

Thank you, thank you!

You are good... Excellent job

Brandy

"Gaurav" wrote:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,646
Default Excel - viewing hidden rows

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

€˛Gaurav€¯ ezt Ć*rta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Excel - viewing hidden rows

How do you install?

I'm in MS VB

Thanks

Brandy

"Stefi" wrote:

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

€˛Gaurav€¯ ezt Ć*rta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Excel - viewing hidden rows

Glad I could help.


"Brandy" wrote in message
...
Thank you, thank you!

You are good... Excellent job

Brandy

"Gaurav" wrote:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for
viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to
FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a
particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however,
it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy








  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,646
Default Excel - viewing hidden rows

Alt+F11(VB Editor),
Right click on your worksheet name among MS Excel objects
View code
Copy and paste code in the code window
Stefi


€˛Brandy€¯ ezt Ć*rta:

How do you install?

I'm in MS VB

Thanks

Brandy

"Stefi" wrote:

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

€˛Gaurav€¯ ezt Ć*rta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy






  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Excel - viewing hidden rows

I did that...

Brandy

"Stefi" wrote:

Alt+F11(VB Editor),
Right click on your worksheet name among MS Excel objects
View code
Copy and paste code in the code window
Stefi


€˛Brandy€¯ ezt Ć*rta:

How do you install?

I'm in MS VB

Thanks

Brandy

"Stefi" wrote:

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

€˛Gaurav€¯ ezt Ć*rta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy








  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Excel - viewing hidden rows

Just as easy to right-click on the sheet tab without going to the VBE

From the worksheet.right-click and "View Code" opens the VBE

Paste in then Alt + q to return to the Excel window.



Gord Dibben MS Excel MVP


On Mon, 15 Sep 2008 06:57:01 -0700, Stefi
wrote:

Alt+F11(VB Editor),
Right click on your worksheet name among MS Excel objects
View code
Copy and paste code in the code window
Stefi


„Brandy” ezt ķrta:

How do you install?

I'm in MS VB

Thanks

Brandy

"Stefi" wrote:

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

„Gaurav” ezt ķrta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy







  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,646
Default Excel - viewing hidden rows

.... and does it do what you expected?
Stefi


€˛Brandy€¯ ezt Ć*rta:

I did that...

Brandy

"Stefi" wrote:

Alt+F11(VB Editor),
Right click on your worksheet name among MS Excel objects
View code
Copy and paste code in the code window
Stefi


€˛Brandy€¯ ezt Ć*rta:

How do you install?

I'm in MS VB

Thanks

Brandy

"Stefi" wrote:

Install this event sub into your workbook:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireRow.Hidden Then Target.EntireRow.Hidden = False
End Sub
Post if you need help on how to install!

Regards,
Stefi

€˛Gaurav€¯ ezt Ć*rta:

not that I know of...but same thing can be done using keyboard as well.

Alt+O R U

This will unhide the row you entered in Go-To.


"Brandy" wrote in message
...
Yes, that's correct; however, is there a command that will do it all in
one?

So, if I go to D1, is there a command that will open the row for viewing?

Thanks

Brandy

"Gaurav" wrote:

in Go-To, type A14 for example. Press enter. Then go to FormatRowUnhide


"Brandy" wrote in message
...
How can you view hidden rows with a "Go To" command?

I have hidden rows in a spreadsheet and I want to review a particular
row
or
column by using a "Go To" without un-hiding every row.

If I use the "go to" command, it will go to the desire row; however, it
will
not display the row or column for viewing.

Is this possible?

Thanks

Brandy






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
Formula or Code to keep Hidden Rows Hidden Carol Excel Worksheet Functions 6 May 1st 07 11:45 PM
Viewing hidden characters BT Connect Excel Discussion (Misc queries) 1 January 11th 07 04:20 PM
I need my Hidden Rows to stay hidden when I print the sheet. Rosaliewoo Excel Discussion (Misc queries) 2 July 20th 06 07:51 PM
Excel 2003 -Rows hidden. Scrolling unhides rows ! How do I stop th Excellent1975 Excel Discussion (Misc queries) 0 June 21st 06 08:01 PM
hidden rows in Excel David Excel Discussion (Misc queries) 6 October 28th 05 05:13 PM


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

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

About Us

"It's about Microsoft Excel"