Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default trying to create a way to link summary page to subsequent workshee

Sorry. . not incredibly versed in Excel lingo, but trying to create a summary
page and when you click on the name it will automatically take you to the
detail worksheet. Can anyone help. . . please??? Thanks :)
--
girlsrope2
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,071
Default trying to create a way to link summary page to subsequent workshee

I take it that you have a list of sheet names in the Summary sheet. If not,
the following macro will not do it for you. If yes, then it will. I
assumed your list of sheet names are in Column A starting in A2. This is a
sheet event macro and must be placed in the sheet module of the Summary
sheet. The Summary sheet does not have to be named "Summary". To access
that sheet module, right-click on the sheet tab and select View Code. Paste
this macro into that module. "X" out of the module to return to your sheet.
HTH Otto
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim rColA As Range
If Target.Count 1 Then Exit Sub
Set rColA = Range("A2", Range("A" & Rows.Count).End(xlUp))
If Not Intersect(Target, rColA) Is Nothing Then
Sheets(Target.Value).Select
End If
End Sub
"girlsrope2" wrote in message
...
Sorry. . not incredibly versed in Excel lingo, but trying to create a
summary
page and when you click on the name it will automatically take you to the
detail worksheet. Can anyone help. . . please??? Thanks :)
--
girlsrope2


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
Detailed worksheet value entered automatically in Summary workshee Victoria Excel Discussion (Misc queries) 2 September 26th 07 06:36 PM
Create Summary List Page CB Excel Discussion (Misc queries) 3 March 29th 07 09:54 PM
Conditional Linking and Formatting across worksheets to form Summary Page - Only pull/link non-null fields J Leckner Excel Worksheet Functions 1 September 22nd 06 04:18 PM
How can I print page 1 portrait and subsequent pages landscape? havebagwillaudit Excel Worksheet Functions 1 February 16th 06 12:21 AM
How can I create a link to a specific sheet from external web page John D Excel Discussion (Misc queries) 1 February 22nd 05 08:40 PM


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