#1   Report Post  
Posted to microsoft.public.excel.misc
Graham7979
 
Posts: n/a
Default linking worksheets

I have an excel workbook with approx 30 worksheets, i want to create a menu
page wherby a cell (with the name of the worksheet in it) can be clicked on
and this will take me direct to that work sheet, how do i do this ?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ardus Petus
 
Posts: n/a
Default linking worksheets

I have home-made XLA that should help: http://cjoint.com/?fwqZQdNgus
It is not protected: you can view & edit the code and the userform

To have tabs alpha ordered, right click on arrows left of tabs list, and
select "Sort tabs"

To select a sheet:
Right-click on a cell and select "Select sheet"
You can type the beginning of the name: it will select corresponding entry
of the list.
To validate: press Enter or double-click on a name
To cancel: press Escape

HTH
--
AP

"Graham7979" a écrit dans le message
de news: ...
I have an excel workbook with approx 30 worksheets, i want to create a menu
page wherby a cell (with the name of the worksheet in it) can be clicked
on
and this will take me direct to that work sheet, how do i do this ?



  #3   Report Post  
Posted to microsoft.public.excel.misc
KellTainer
 
Posts: n/a
Default linking worksheets


Hi, You could try this solution.

If I understand correctly, you want to be able to select cells which
will then link to the sheet of the same name within the same workbook.
Well, if you put this code in your sheet object which contains the menu
in VBA, everytime you select a cell, it will go to the sheet of the same
name. Since its in the menu sheet object, the selection change event
wont affect the other objects.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
For Counter = 1 To Application.Sheets.Count
If Application.ActiveCell.Value =
Application.Sheets(Counter).Name Then
Application.Sheets(Counter).Select
End If
Next Counter
End Sub

Kudos!


--
KellTainer
------------------------------------------------------------------------
KellTainer's Profile: http://www.excelforum.com/member.php...o&userid=34322
View this thread: http://www.excelforum.com/showthread...hreadid=546284

  #4   Report Post  
Posted to microsoft.public.excel.misc
Ragdyer
 
Posts: n/a
Default linking worksheets

Are you aware of the fact that XL has a resident (built in) table of
contents?

Right click on those small arrows to the left of the sheet tabs.
This displays a list of the first 15 tabs, plus it's expandable to an
infinite scrolling list of all the sheets, where a 'double click' of a sheet
name will place you in that sheet.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Graham7979" wrote in message
...
I have an excel workbook with approx 30 worksheets, i want to create a

menu
page wherby a cell (with the name of the worksheet in it) can be clicked

on
and this will take me direct to that work sheet, how do i do this ?


  #5   Report Post  
Posted to microsoft.public.excel.misc
Ken G.
 
Posts: n/a
Default linking worksheets

Bastien Mensink's ASAP Utililities will do this with a couple of clicks. Its
a free add-in which contains about 300 usefull utilities. Go to
www.asap-utilities.com

"Graham7979" wrote:

I have an excel workbook with approx 30 worksheets, i want to create a menu
page wherby a cell (with the name of the worksheet in it) can be clicked on
and this will take me direct to that work sheet, how do i do this ?

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
Linking Worksheets Reefaman Excel Worksheet Functions 0 February 28th 06 07:36 PM
I am getting #VALUE! when linking worksheets - what am i doing wro KAT Excel Discussion (Misc queries) 7 February 23rd 06 07:46 AM
Linking between multiple worksheets, workbooks and columns cmvbfore Excel Discussion (Misc queries) 0 October 4th 05 06:58 PM
Linking Several Worksheets to One Worksheet TangentMemory Excel Discussion (Misc queries) 1 May 10th 05 11:37 PM
Linking across worksheets not working as desired Steve Excel Worksheet Functions 0 April 27th 05 10:30 AM


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