Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 271
Default Help with Jumping to a Worksheet

I have an excel worksheet with over 50 sheets, each sheet contains a lot
number in cell B7 which is also the name of the sheet. Is there a way to
make the first sheet where you type in lot #G0116 for example and the user is
"hyperlinked" to that sheet?

Any help wuld be appreciated~
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 69
Default Help with Jumping to a Worksheet

How about listing all the lot numbers in the first sheet - leave a cell
blank, and next to it put in the lot numbers in columns - col A blank, Col B
contains 25 lot numbers, Col C blank, Col D contains last 25 lot numbers.
Click on Col A1, right click and select Hyperlink. On the left side, select
"place in this document" and select the tab that refers to the lot number.
Of course - you would want to generate all the sheets and name them before
you do the hyperlink.

HTH-

Carole O

"Susan" wrote:

I have an excel worksheet with over 50 sheets, each sheet contains a lot
number in cell B7 which is also the name of the sheet. Is there a way to
make the first sheet where you type in lot #G0116 for example and the user is
"hyperlinked" to that sheet?

Any help wuld be appreciated~

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 271
Default Help with Jumping to a Worksheet

I wish that would work, but someone else is creating new lot numbers every
week, and they have no idea how to set up a hyperlink, i was trying something
simple

"Carole O" wrote:

How about listing all the lot numbers in the first sheet - leave a cell
blank, and next to it put in the lot numbers in columns - col A blank, Col B
contains 25 lot numbers, Col C blank, Col D contains last 25 lot numbers.
Click on Col A1, right click and select Hyperlink. On the left side, select
"place in this document" and select the tab that refers to the lot number.
Of course - you would want to generate all the sheets and name them before
you do the hyperlink.

HTH-

Carole O

"Susan" wrote:

I have an excel worksheet with over 50 sheets, each sheet contains a lot
number in cell B7 which is also the name of the sheet. Is there a way to
make the first sheet where you type in lot #G0116 for example and the user is
"hyperlinked" to that sheet?

Any help wuld be appreciated~

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default Help with Jumping to a Worksheet

You can do it with a macro. If you are interested in trying it it works by
responding to changes in Cell A1. When the value is changed the macro tryes
to send you to the sheet specified in the A1. To make it work right click on
the sheet and select view code. Paste this in the code window...

Private Sub Worksheet_Change(ByVal Target As Range)
Dim wks As Worksheet

If Target.Address = "$A$1" Then
On Error Resume Next
Set wks = Sheets(Target.Value)
On Error GoTo 0
If wks Is Nothing Then
MsgBox "Sheet " & Target.Value & " does not exist."
Else
wks.Select
End If
End If
End Sub
--
HTH...

Jim Thomlinson


"Susan" wrote:

I have an excel worksheet with over 50 sheets, each sheet contains a lot
number in cell B7 which is also the name of the sheet. Is there a way to
make the first sheet where you type in lot #G0116 for example and the user is
"hyperlinked" to that sheet?

Any help wuld be appreciated~

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
Jumping Scroll Mountain_Man_Jeff Excel Discussion (Misc queries) 0 February 4th 08 10:22 PM
jumping around raulavi Excel Discussion (Misc queries) 11 September 9th 07 01:28 AM
Jumping five steps Arne Hegefors Excel Discussion (Misc queries) 7 August 3rd 06 04:24 PM
Page jumping Alarmbloke Excel Discussion (Misc queries) 0 December 12th 05 10:01 AM
Jumping columns Lolly Excel Discussion (Misc queries) 3 November 18th 05 03:17 AM


All times are GMT +1. The time now is 04:30 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"