A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Hyperlink to range of cells



 
 
Thread Tools Display Modes
  #1  
Old November 7th, 2007, 08:14 AM posted to microsoft.public.excel.worksheet.functions
DaveFinn
external usenet poster
 
Posts: 7
Default Hyperlink to range of cells

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!
  #2  
Old November 7th, 2007, 10:20 AM posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
 
Posts: 7,584
Default Hyperlink to range of cells

try:

Tools Options Transition Transition navigations keys



--
Gary''s Student - gsnu200754


"DaveFinn" wrote:

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

  #3  
Old November 7th, 2007, 11:09 AM posted to microsoft.public.excel.worksheet.functions
DaveFinn
external usenet poster
 
Posts: 7
Default Hyperlink to range of cells


I don't think that will work because it needs to work on any computer. I
can't leave it for user to adjust every time.



"Gary''s Student" wrote:

try:

Tools Options Transition Transition navigations keys



--
Gary''s Student - gsnu200754


"DaveFinn" wrote:

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

  #4  
Old November 7th, 2007, 01:09 PM posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
 
Posts: 7,584
Default Hyperlink to range of cells

This is very clumsy and if you get a better response, forget this post. Say
we have:

=HYPERLINK("#Sheet1!B9","go")

in a cell. Clicking it will take you to B9. In the worksheet code area put
this event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Set r = Range("B9")
If Intersect(Target, r) Is Nothing Then Exit Sub
Application.Goto reference:=Target, scroll:=True
End Sub

So the hyperlink takes you to B9. When you get to B9 the macro will scroll
so B9 is in the upper left-hand corner.
--
Gary''s Student - gsnu200754


"DaveFinn" wrote:


I don't think that will work because it needs to work on any computer. I
can't leave it for user to adjust every time.



"Gary''s Student" wrote:

try:

Tools Options Transition Transition navigations keys



--
Gary''s Student - gsnu200754


"DaveFinn" wrote:

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

  #5  
Old November 7th, 2007, 02:19 PM posted to microsoft.public.excel.worksheet.functions
DaveFinn
external usenet poster
 
Posts: 7
Default Hyperlink to range of cells

Thanks, you really understood what I'm after.

But it still doesn't quite work. If I am for example at A1 and want to
scroll so that A40 is the left upper corner it won't work. Or if the A40 is
somewhere on the screen visible. But if I am at A70 and want to go to A 45
then it does the job



"Gary''s Student" wrote:

This is very clumsy and if you get a better response, forget this post. Say
we have:

=HYPERLINK("#Sheet1!B9","go")

in a cell. Clicking it will take you to B9. In the worksheet code area put
this event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Set r = Range("B9")
If Intersect(Target, r) Is Nothing Then Exit Sub
Application.Goto reference:=Target, scroll:=True
End Sub

So the hyperlink takes you to B9. When you get to B9 the macro will scroll
so B9 is in the upper left-hand corner.
--
Gary''s Student - gsnu200754


"DaveFinn" wrote:


I don't think that will work because it needs to work on any computer. I
can't leave it for user to adjust every time.



"Gary''s Student" wrote:

try:

Tools Options Transition Transition navigations keys



--
Gary''s Student - gsnu200754


"DaveFinn" wrote:

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

  #6  
Old November 7th, 2007, 04:52 PM posted to microsoft.public.excel.worksheet.functions
Beege
external usenet poster
 
Posts: 66
Default Hyperlink to range of cells

DaveFinn wrote:
I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!


Hi,

I've done this, sort of.

Select range
Insert/Names/Define
Name the range

then

Insert/Hyperlink/Place in this Document/Range Name

or you can skip the Range name thing, and select the sheet and type in a
range (W1:AB15)

Helps?

Beege
  #7  
Old November 8th, 2007, 06:25 AM posted to microsoft.public.excel.worksheet.functions
DaveFinn
external usenet poster
 
Posts: 7
Default Hyperlink to range of cells


Thanks Beege.

It does the trick but then leaves a cosmetic problem of selecting all the
cells. If you have any solution for this I would be very grateful!

DaveFinn

"Beege" wrote:

DaveFinn wrote:
I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!


Hi,

I've done this, sort of.

Select range
Insert/Names/Define
Name the range

then

Insert/Hyperlink/Place in this Document/Range Name

or you can skip the Range name thing, and select the sheet and type in a
range (W1:AB15)

Helps?

Beege

  #8  
Old November 8th, 2007, 07:05 AM posted to microsoft.public.excel.worksheet.functions
DaveFinn
external usenet poster
 
Posts: 7
Default Hyperlink to range of cells

Thanks Gary! I finally got it working. It was just due to my stupidity not to
understand how to use your code properly.




"Gary''s Student" wrote:

This is very clumsy and if you get a better response, forget this post. Say
we have:

=HYPERLINK("#Sheet1!B9","go")

in a cell. Clicking it will take you to B9. In the worksheet code area put
this event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Set r = Range("B9")
If Intersect(Target, r) Is Nothing Then Exit Sub
Application.Goto reference:=Target, scroll:=True
End Sub

So the hyperlink takes you to B9. When you get to B9 the macro will scroll
so B9 is in the upper left-hand corner.
--
Gary''s Student - gsnu200754


"DaveFinn" wrote:


I don't think that will work because it needs to work on any computer. I
can't leave it for user to adjust every time.



"Gary''s Student" wrote:

try:

Tools Options Transition Transition navigations keys



--
Gary''s Student - gsnu200754


"DaveFinn" wrote:

I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

  #9  
Old November 8th, 2007, 06:29 PM posted to microsoft.public.excel.worksheet.functions
Beege
external usenet poster
 
Posts: 66
Default Hyperlink to range of cells

Dave,

I tried something else.
Look at View/Custom Views - first move to where the sheet is positioned
where you like it. Add a view.

Then start a macro to get to that view from somewhere else. Finish the
macro.

Add a button to your first sheet from the forms toolbar, and assign the
macro to it.

When complete, you should be able to click the button, and the view you
created will show exactly as you want it to.

I tried it.

Then to have other buttons that get you back to your "Table of Contents"

Different, but it might work

Beege

DaveFinn wrote:
Thanks Beege.

It does the trick but then leaves a cosmetic problem of selecting all the
cells. If you have any solution for this I would be very grateful!

DaveFinn

"Beege" wrote:

DaveFinn wrote:
I have this worksheet that has lots of graphs etc. I would like to make the
reading experience better for users so that they wouldn't have to scroll down
all the time.

What I havre done so far is that I have freezed couple of rows from the top
and inserted buttons to contain hyperlinks to this sheet. The purpose is to
give user impression of going through different pages. It works well when you
go down from the first to last but not other way round bacause hyperlink has
to refer to only one cell.

So is there any way to refer to range of cells so user would allways see
same section of the worksheet?

Thanks!

Hi,

I've done this, sort of.

Select range
Insert/Names/Define
Name the range

then

Insert/Hyperlink/Place in this Document/Range Name

or you can skip the Range name thing, and select the sheet and type in a
range (W1:AB15)

Helps?

Beege

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.