Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Going from one Sheet to another in the same file

I have a file with more than 10 Sheet tabs, is there a short cut to go from
one sheet to another ?
The sheet tabs are in the same file.
Something similar to what we have in order to go from one cell to another
pressing the F5 key ?

Thanks
--
Moises
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Going from one Sheet to another in the same file

Ctrl+PgDn to go to the next sheet, Ctrl+PgUp to go to the previous sheet.
--
Please remember to indicate when the post is answered so others can benefit
from it later.


"Moises" wrote:

I have a file with more than 10 Sheet tabs, is there a short cut to go from
one sheet to another ?
The sheet tabs are in the same file.
Something similar to what we have in order to go from one cell to another
pressing the F5 key ?

Thanks
--
Moises

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Going from one Sheet to another in the same file

KC,
Thanks.
There is a way to go to a known Sheet tab, for example I am in Sheet 1 and I
need to go to the Sheet named "INV", and this sheet is not after or before
the Sheet 1.

Thanks
--
Moises


"KC Rippstein" wrote:

Ctrl+PgDn to go to the next sheet, Ctrl+PgUp to go to the previous sheet.
--
Please remember to indicate when the post is answered so others can benefit
from it later.


"Moises" wrote:

I have a file with more than 10 Sheet tabs, is there a short cut to go from
one sheet to another ?
The sheet tabs are in the same file.
Something similar to what we have in order to go from one cell to another
pressing the F5 key ?

Thanks
--
Moises

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Going from one Sheet to another in the same file

you can right click on the sheet navigator in the lower left corner of the
sheet to see a pop up showing all your sheets. clck one to go to it.
if you have more than 15 sheets, there will be a "more sheets" option...
click that and you get a scrollable list of all of your sheets
--
Please remember to indicate when the post is answered so others can benefit
from it later.


"Moises" wrote:

KC,
Thanks.
There is a way to go to a known Sheet tab, for example I am in Sheet 1 and I
need to go to the Sheet named "INV", and this sheet is not after or before
the Sheet 1.

Thanks
--
Moises


"KC Rippstein" wrote:

Ctrl+PgDn to go to the next sheet, Ctrl+PgUp to go to the previous sheet.
--
Please remember to indicate when the post is answered so others can benefit
from it later.


"Moises" wrote:

I have a file with more than 10 Sheet tabs, is there a short cut to go from
one sheet to another ?
The sheet tabs are in the same file.
Something similar to what we have in order to go from one cell to another
pressing the F5 key ?

Thanks
--
Moises

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default Going from one Sheet to another in the same file

Here's a bit of code you can use. You can run the code directly or
assign it to a keyboard shortcut. When the prompt displays, enter the
number corresponding to the worksheet name.

Sub NavSheets()
Dim N As Long
Dim S As String
With ActiveWorkbook.Worksheets
For N = 1 To .Count
S = S & CStr(N) & " " & .Item(N).Name & vbCrLf
Next N
N = Application.InputBox(prompt:="Select A Sheet." & vbCrLf & _
S, Type:=1)
If N = 1 And N <= .Count Then
.Item(N).Select
End If
End With
End Sub

Cordially,
Chip Pearson
Microsoft MVP
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Fri, 19 Dec 2008 15:56:07 -0800, Moises
wrote:

I have a file with more than 10 Sheet tabs, is there a short cut to go from
one sheet to another ?
The sheet tabs are in the same file.
Something similar to what we have in order to go from one cell to another
pressing the F5 key ?

Thanks

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
Can you save 1 sheet from a large file into another file? imktew Excel Worksheet Functions 2 January 17th 08 05:46 AM
copy the same raws of all sheets from about a 100 file to a new sheet of a book and save the file [email protected] Setting up and Configuration of Excel 0 March 14th 07 02:13 AM
why a excel file,one sheet only, take 23 Mb ? MCortes Excel Worksheet Functions 1 January 22nd 07 07:54 AM
Convertion of Excel sheet file to .txt file format charu Excel Discussion (Misc queries) 2 June 27th 06 12:09 PM
Updating excel sheet with selected data from another sheet in the same file gsnivas Excel Worksheet Functions 1 August 4th 05 09:55 AM


All times are GMT +1. The time now is 06:55 AM.

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"