Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 28
Default Hyperlink via indirect cell reference

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Hyperlink via indirect cell reference

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 28
Default Hyperlink via indirect cell reference

I won't hold it against you - however as I have to do this many times I am
trying to find a formula.

Thanks

"מיכאל (מיקי) אבידן" wrote:

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Hyperlink via indirect cell reference

Well..., after another thought and assuming all your sheets begin with
"Sheet" and with an sequential number beginning with 1 - try this:
In cell A1 - in the other spare sheet - put this formula and copy down as
much as your sheets count:
=HYPERLINK("#"&CELL("address",INDIRECT("Sheet"&ROW ()&"!A1")),"Go to
Sheet"&ROW())
Micky


"BabyMc" wrote:

I won't hold it against you - however as I have to do this many times I am
trying to find a formula.

Thanks

"מיכאל (מיקי) אבידן" wrote:

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Hyperlink via indirect cell reference

=HYPERLINK("#"&OFFSET(A1,,,,)&"!A1","Jump to Sheet : "&A1)


"מיכאל (מיקי) אבידן" skrev:

Well..., after another thought and assuming all your sheets begin with
"Sheet" and with an sequential number beginning with 1 - try this:
In cell A1 - in the other spare sheet - put this formula and copy down as
much as your sheets count:
=HYPERLINK("#"&CELL("address",INDIRECT("Sheet"&ROW ()&"!A1")),"Go to
Sheet"&ROW())
Micky


"BabyMc" wrote:

I won't hold it against you - however as I have to do this many times I am
trying to find a formula.

Thanks

"מיכאל (מיקי) אבידן" wrote:

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Hyperlink via indirect cell reference

Of course !
My apology for not noticing the existence of the sheets name list in col. A
However - your formula can be shorter:
=HYPERLINK("#"&A1&"!A1","Jump to Sheet: "&A1)
Micky



"excelent" wrote:

=HYPERLINK("#"&OFFSET(A1,,,,)&"!A1","Jump to Sheet : "&A1)


"מיכאל (מיקי) אבידן" skrev:

Well..., after another thought and assuming all your sheets begin with
"Sheet" and with an sequential number beginning with 1 - try this:
In cell A1 - in the other spare sheet - put this formula and copy down as
much as your sheets count:
=HYPERLINK("#"&CELL("address",INDIRECT("Sheet"&ROW ()&"!A1")),"Go to
Sheet"&ROW())
Micky


"BabyMc" wrote:

I won't hold it against you - however as I have to do this many times I am
trying to find a formula.

Thanks

"מיכאל (מיקי) אבידן" wrote:

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 28
Default Hyperlink via indirect cell reference

Thanks for both of your replies. I will try them out following the festive
break.

Before I do, though, might I trouble to ask that - as my sheets aren't
actually called Sheet1 etc (they are actually various 6 digit numbers) -
would this formula still work?

Thanks once again.

"excelent" wrote:

=HYPERLINK("#"&OFFSET(A1,,,,)&"!A1","Jump to Sheet : "&A1)


"מיכאל (מיקי) אבידן" skrev:

Well..., after another thought and assuming all your sheets begin with
"Sheet" and with an sequential number beginning with 1 - try this:
In cell A1 - in the other spare sheet - put this formula and copy down as
much as your sheets count:
=HYPERLINK("#"&CELL("address",INDIRECT("Sheet"&ROW ()&"!A1")),"Go to
Sheet"&ROW())
Micky


"BabyMc" wrote:

I won't hold it against you - however as I have to do this many times I am
trying to find a formula.

Thanks

"מיכאל (מיקי) אבידן" wrote:

Will you hold it against me if I dare to suggest that you RIGHT(!) click one
of the small arrows to the left of all the Tabs and select the needed sheet ?
To the best of my knowledge - the other way involves Macros.
Micky



"BabyMc" wrote:

Hi

I have workbook that contains a number of sheets. On a separate sheet I
would like to be able to insert a hyperlink so that I can jump to a specific
sheet.

However, rather than inserting all of the hyperlinks manually (I will have
to replicate this over many workbooks) I wondered if there was a formula to
allow me to jump to a cell (say A1) in another worksheet, based on the name
of that worksheet being entered in a cell reference.

For example - a number of worksheets called "Sheet1", "Sheet2", "Sheet3",
"Sheet4".

In another sheet I would have

A
1 Sheet1
2 Sheet2
3 Sheet3
4 Sheet4

then in cells B1 to B4 have a formula that jumps to the sheet named in A1 to
A4.


Thanks


PS - I'm not very good with macros so I was hoping for a formula.

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
indirect cell reference TomCser Excel Worksheet Functions 1 December 20th 08 01:31 AM
Indirect sheet reference in a cell velvetlady Excel Worksheet Functions 1 April 1st 08 05:13 PM
Indirect Hyperlink from a graphic to a calculated cell or range KenInPortland Excel Worksheet Functions 5 February 11th 08 09:10 PM
Indirect Hyperlink from a graphic to a calculated cell or range KenInPortland Excel Worksheet Functions 0 February 7th 08 04:35 PM
Cell reference within a indirect.. Hurtige Excel Worksheet Functions 2 August 14th 06 11:54 AM


All times are GMT +1. The time now is 09:50 AM.

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"