Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Hyperlinks

0 views
Skip to first unread message

andrew

unread,
Jul 31, 2003, 4:15:54 AM7/31/03
to
I cannot remove a hyperlink - even clearing or deleting
cells - the wretched hyperlink still re-appears. All the
tips about how to remove hyperlinks don't work either.

Peter Atherton

unread,
Jul 31, 2003, 11:23:38 AM7/31/03
to
Hello Andrew

I just created and deleted hyperlinks.

1) Right-click on link and choose cut. The Edit, Clear all.

Yes that worked

2) Select row marker At right of spreadsheet and press
Ctrl plus - to delete the row.

Save the sheet straight away to remove erference to the
link.

Regards
Peter

>.
>

Dave Peterson

unread,
Jul 31, 2003, 6:07:02 PM7/31/03
to
Does the cell still contain a wretched hyperlink or does it just look like a
wretched hyperlink.

I'm betting that it really isn't a hyperlink anymore, but the cell has a
(wretched) hyperlink style.

Select your cell (or range of cells) and then
Format|Style|Change the style name to Normal

--

Dave Peterson
ec3...@msn.com

Lori

unread,
Aug 1, 2003, 9:22:52 AM8/1/03
to
When creating a hyperlink from Microsoft Word to an Excel
file. I cannot create the link to open a specific sheet in
the workbook?? Any help would be apprieciated!

Dave Peterson

unread,
Aug 1, 2003, 6:45:35 PM8/1/03
to
This worked ok for me (office 2002):

C:\My Documents\excel\book1.xls#sheet1!a18

Inside word, I did ctrl-k to insert the hyperlink. That string went into the
Address box.

And if the worksheet had spaces:
C:\My Documents\excel\book1.xls#'My Sheet 1'!a18

If you used range names, you could replace #sheet!a18 with #myName.

--

Dave Peterson
ec3...@msn.com

Shaz

unread,
Aug 2, 2003, 5:23:29 AM8/2/03
to
Hi

I have managed to create hyperlinks,what I am doing is
trying to make an "address book" type thing, where at the
top of the page you have the alphabet, you click on "p"
and it takes you to the "p" section on the same page,
which works fine, except when I add lines, the hyperlink
of the "p" section doesn't move down, it stays where it
is. How can I make it move down and stay linked to the
top alphabet, when I add lines??

Is there a way where you can add data that cannot be
edited?? Such as "Surname", "Name", "Address" and stuff
like that. So if I send the document to someone, they
can't delete anything, but they can add things?? If you
know what I mean??

Please help if you can.

Regards
Shaz

Dave Peterson

unread,
Aug 2, 2003, 8:04:00 AM8/2/03
to
I think I'd a nice header right before the beginning of the actual data for each
letter:

A
Anderson
Andrews

B
Baker
Boone

Then I'd define 26 range names that point at those headers:
Start_A, Start_B, ..., Start_Z

And I'd link to the header ranges:
=HYPERLINK(Start_A,"Jump to A")
=HYPERLINK(Start_B,"Jump to B")
and so forth.

Then if I had to insert something before the first entry, it wouldn't make a
difference. I'd still go to the header.

--

Dave Peterson
ec3...@msn.com

Jim Badinger

unread,
Aug 2, 2003, 8:09:30 AM8/2/03
to
Try this...

Select the cell you wish to "protect".
Go to the Menu bar and select Data...go to Validation
under the drop down menu. This should bring up the
Validation Dialog box which will need info from you. It
looks like you want to save your titles over each column
of cells. Go to the Settings look for Allow and use the
drop down to select Custom. Just below that is the Formula
and here enter the "text" that is in the cell you wish to
protect. It has to be exactly the same as the cell...case
sensitive. Next go to the Input tab of this same dialog
box and for a Title just type something relative like the
cell text Ex: Surname and for an input message type
something small like Saved or Protected. If you notice the
check box here allows you to either show or hide this
info...this is up to you...try both to see the effect.
Finally go to the tab Error Alert and choose STOP for your
Style drop down. Next for a Title enter the cell text
again such as Surname. Last for an error message enter
something like...Protected Cell. Hit "OK" to save this
validation. After this is done you can attempt to change
it. What should occur is if you try to change it you will
get a "Retry" button and a "Cancel" button...until you hit
the "Cancel" button it will continue to give the error
message and not accept anything but the original text you
have there.

Good Luck

>.
>

David McRitchie

unread,
Aug 2, 2003, 12:18:03 PM8/2/03
to
Headers are definitely required, but why use defined names
rather than the object type hyperlink. Is that to get around some
bugs in Excel or to speed things up. I wonder what would happen
if you converted it HTML

Something that may be of interest: Excel does not support multiple
hyperlinks in a cell so those 26 letters to get to the link are each
going to each require a cell. If actually using HTML would probably
have each letter on it's own webpage, if loading time would be
noticeable.

A publisher would probably use a letter in small box, you might be
able to simulate this without using graphics by surrounding in
square brackets and by centering the text.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Dave Peterson" <ec3...@msn.com> wrote in message news:3F2BA8B0...@msn.com...

Dave Peterson

unread,
Aug 2, 2003, 8:13:22 PM8/2/03
to
You're absolutely correct. I didn't need the names.

--

Dave Peterson
ec3...@msn.com

Hari Krishna Dara

unread,
Aug 15, 2003, 7:42:00 PM8/15/03
to
I needed exactly this a few minutes ago and created the following
forumula for that, which seems to work. The only problem is that I
couldn't avoid hard-coding the name of the file and sheet in the
formula, so if someone has an idea on how to avoid that, it becomes
very generic.

=HYPERLINK("[FileNamHere.xls]'Sheet Name
Here'!R"&CELL("row",C72)&"C"&CELL("col",C72), "Repeat Step "&A72)

This shows up something like "Repeat Step 10" in my case. And since
all the cell references are seen as "real" references, excel will
automatically adjust them when rows or columns are inserted or
deleted.

Thank you,
Hari


"Shaz" <dol...@ananzi.co.za> wrote in message news:<056201c358d7$bc4fdfb0$a501...@phx.gbl>...

David McRitchie

unread,
Aug 15, 2003, 9:14:11 PM8/15/03
to
Hi Hari, and Shaz,
That was certainly a pain having to code the pathname, but then I
stumbled into this by mistake in Excel 2000. Excel 2002 , which I do not
have, does not require such measures but I've been told that this works
from Excel 97 on up.

=HYPERLINK("#"&CELL("address",C5),C5)
=HYPERLINK("#"&CELL("address",sheetone!C5),sheetone!C5)
=HYPERLINK("#"&CELL("address",'sheet two'!C5),'sheet two'!C5)

The above examples from my sheet.htm page, which
has additional examples including one with VLOOKUP. Since I
didn't understand the original question I had been thinking it might
require VLOOKUP and had forgotten where I had the code to use
a hyperlink with VLOOKUP. Help with VLOOKUP Worksheet
function can be found in
..http://www.mvps.org/dmcritchie/excel/vlookup.htm
if it turns out that was what was also needed.

No address cell is within double quotes so the formulas will adjust if
you insert/delete rows or want to use the fill-handle.
CELL is a Volatile function, but worksheet volatile functions do not present
the serious slowdowns that Volatile User Defined (VBA) Functions can have.

---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm


"Hari Krishna Dara" <hari_ne...@yahoo.com> wrote in message news:16dcd029.03081...@posting.google.com...

Hari Krishna Dara

unread,
Aug 18, 2003, 3:21:14 PM8/18/03
to
"David McRitchie" <dmcri...@msn.com> wrote in message news:<OiydjQ5Y...@tk2msftngp13.phx.gbl>...

> Hi Hari, and Shaz,
> That was certainly a pain having to code the pathname, but then I
> stumbled into this by mistake in Excel 2000. Excel 2002 , which I do not
> have, does not require such measures but I've been told that this works
> from Excel 97 on up.
>
> =HYPERLINK("#"&CELL("address",C5),C5)
> =HYPERLINK("#"&CELL("address",sheetone!C5),sheetone!C5)
> =HYPERLINK("#"&CELL("address",'sheet two'!C5),'sheet two'!C5)
>
> The above examples from my sheet.htm page, which
> has additional examples including one with VLOOKUP. Since I
> didn't understand the original question I had been thinking it might
> require VLOOKUP and had forgotten where I had the code to use
> a hyperlink with VLOOKUP. Help with VLOOKUP Worksheet
> function can be found in
> ..http://www.mvps.org/dmcritchie/excel/vlookup.htm
> if it turns out that was what was also needed.
>
> No address cell is within double quotes so the formulas will adjust if
> you insert/delete rows or want to use the fill-handle.
> CELL is a Volatile function, but worksheet volatile functions do not present
> the serious slowdowns that Volatile User Defined (VBA) Functions can have.
>

Excellent!! This definitely is much better than my solution. Thanks a
lot for letting us know about this feature.

Hari

0 new messages