Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default hyperlink with name from cell

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default hyperlink with name from cell

maybe check out David McRitchie's site on building a TOC with hyperlinks:

http://www.mvps.org/dmcritchie/excel/buildtoc.htm

--
Regards,
Tom Ogilvy



"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default hyperlink with name from cell

You have two really good options:

1. create a Named Range for each place you want to go to. You go there by
pulling down the address pull-down just to the left of the formula bar. This
options is good because it does not use a lot of worksheet space


2. create a list of hyperlinks in the worksheet like:
=HYPERLINK("[Book1]Sheet3!Z100","zoo")

--
Gary''s Student
gsnu200705


"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default hyperlink with name from cell

I created a "Budget" workbook with June, July, & August workshhets, and added
the following hyperlink in August. I got a pop-up saying "Cannot open the
specified file". What am I doing wrong?
=HYPERLINK("[Budget]June!E56", E56)

"Tom Ogilvy" wrote:

maybe check out David McRitchie's site on building a TOC with hyperlinks:

http://www.mvps.org/dmcritchie/excel/buildtoc.htm

--
Regards,
Tom Ogilvy



"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default hyperlink with name from cell


=HYPERLINK("[Budget.xls]June!E56",E56)

Worked for me.

--
Regards,
Tom Ogilvy


"hyperlink with name from cell" wrote:

I created a "Budget" workbook with June, July, & August workshhets, and added
the following hyperlink in August. I got a pop-up saying "Cannot open the
specified file". What am I doing wrong?
=HYPERLINK("[Budget]June!E56", E56)

"Tom Ogilvy" wrote:

maybe check out David McRitchie's site on building a TOC with hyperlinks:

http://www.mvps.org/dmcritchie/excel/buildtoc.htm

--
Regards,
Tom Ogilvy



"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default hyperlink with name from cell

OK, I got part of option 2 to work. Instead of putting "zoo", I want to have
the text from B2 ( the title) to show, so I put
=HYPERLINK("[_Tox Buffer Calculations.xls]MBF01!B2","MBF01!B2")
How do I make "MBF01!B2" = the title?

"Gary''s Student" wrote:

You have two really good options:

1. create a Named Range for each place you want to go to. You go there by
pulling down the address pull-down just to the left of the formula bar. This
options is good because it does not use a lot of worksheet space


2. create a list of hyperlinks in the worksheet like:
=HYPERLINK("[Book1]Sheet3!Z100","zoo")

--
Gary''s Student
gsnu200705


"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. Thanks!

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default hyperlink with name from cell

got it too work...THANKS!

"hyperlink with name from cell" wrote:

OK, I got part of option 2 to work. Instead of putting "zoo", I want to have
the text from B2 ( the title) to show, so I put
=HYPERLINK("[_Tox Buffer Calculations.xls]MBF01!B2","MBF01!B2")
How do I make "MBF01!B2" = the title?

"Gary''s Student" wrote:

You have two really good options:

1. create a Named Range for each place you want to go to. You go there by
pulling down the address pull-down just to the left of the formula bar. This
options is good because it does not use a lot of worksheet space


2. create a list of hyperlinks in the worksheet like:
=HYPERLINK("[Book1]Sheet3!Z100","zoo")

--
Gary''s Student
gsnu200705


"hyperlink with name from cell" wrote:

I have a workbook with 300 worksheets. I just created a dropdown to get to
a specific worksheet fast. But, I have just read about using hyperlinks and
I am intrigued! My first page is set up like a TOC (cell A1 to A300
"=NameOfSheet!B2"). I would like to set up a hyperlink for each sheet and
have the text from a certain cell show up as the name. In the end I would
like to go to my TOC page, click on a name, and then be taken to the
appropriate sheet. This is all new to me.....I am using XL200. 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
Hyperlink from one.xlsx cell to another two.xlxs cell & click back Bobbi-Joe Excel Worksheet Functions 1 August 7th 09 07:18 PM
How do I create a hyperlink to a cell with the hyperlink function S. Bevins Excel Worksheet Functions 2 July 20th 06 08:06 PM
script to hyperlink and reference a cell value in the hyperlink Natasha D. Excel Programming 5 May 17th 06 07:43 PM
How make hyperlink refer to cell content rather than cell address. Omunene Excel Discussion (Misc queries) 3 March 2nd 06 01:07 AM
Copy hyperlink from one cell to/as hyperlink in another cell YogS Excel Worksheet Functions 6 January 12th 06 11:57 PM


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