Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
DG DG is offline
external usenet poster
 
Posts: 46
Default Hyperlinks don't work when emailing attachment

I have an excel spreadsheet that has hyperlinks to files on a network drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this (internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried opening
read only and with the write password. No difference.

Any help would be great.

Dan


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Hyperlinks don't work when emailing attachment

A few people have said that this has stopped a similar problem from occurring.
Maybe it'll help you--but you'll have to test it to make sure.

In xl2003 menus:
File|Properties|Summary Tab|Hyperlink Base
change it to C:\
(something that's always available)

In xl2007:
Click on the Office button
Choose Prepare, then properties.
Then use the arrow on the Document Properties dropdown
Choose Advanced Properties
And then change the hyperlink base on the Summary tab.



DG wrote:

I have an excel spreadsheet that has hyperlinks to files on a network drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this (internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried opening
read only and with the write password. No difference.

Any help would be great.

Dan


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
DG DG is offline
external usenet poster
 
Posts: 46
Default Hyperlinks don't work when emailing attachment

Thanks I'll try tomorrow.


"Dave Peterson" wrote in message
...
A few people have said that this has stopped a similar problem from
occurring.
Maybe it'll help you--but you'll have to test it to make sure.

In xl2003 menus:
File|Properties|Summary Tab|Hyperlink Base
change it to C:\
(something that's always available)

In xl2007:
Click on the Office button
Choose Prepare, then properties.
Then use the arrow on the Document Properties dropdown
Choose Advanced Properties
And then change the hyperlink base on the Summary tab.



DG wrote:

I have an excel spreadsheet that has hyperlinks to files on a network
drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this
(internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried
opening
read only and with the write password. No difference.

Any help would be great.

Dan


--

Dave Peterson



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Hyperlinks don't work when emailing attachment

Please post back with your results--good or bad.

Thanks.

DG wrote:

Thanks I'll try tomorrow.

"Dave Peterson" wrote in message
...
A few people have said that this has stopped a similar problem from
occurring.
Maybe it'll help you--but you'll have to test it to make sure.

In xl2003 menus:
File|Properties|Summary Tab|Hyperlink Base
change it to C:\
(something that's always available)

In xl2007:
Click on the Office button
Choose Prepare, then properties.
Then use the arrow on the Document Properties dropdown
Choose Advanced Properties
And then change the hyperlink base on the Summary tab.



DG wrote:

I have an excel spreadsheet that has hyperlinks to files on a network
drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this
(internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried
opening
read only and with the write password. No difference.

Any help would be great.

Dan


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
DG DG is offline
external usenet poster
 
Posts: 46
Default Hyperlinks don't work when emailing attachment

Dave,

It did not work. Now the path says C:\data_entry\Pending.xls.

I even saved it out of my email to my desktop and received the same result.

Any other ideas?

Dan


"Dave Peterson" wrote in message
...
Please post back with your results--good or bad.

Thanks.

DG wrote:

Thanks I'll try tomorrow.

"Dave Peterson" wrote in message
...
A few people have said that this has stopped a similar problem from
occurring.
Maybe it'll help you--but you'll have to test it to make sure.

In xl2003 menus:
File|Properties|Summary Tab|Hyperlink Base
change it to C:\
(something that's always available)

In xl2007:
Click on the Office button
Choose Prepare, then properties.
Then use the arrow on the Document Properties dropdown
Choose Advanced Properties
And then change the hyperlink base on the Summary tab.



DG wrote:

I have an excel spreadsheet that has hyperlinks to files on a network
drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this
(internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried
opening
read only and with the write password. No difference.

Any help would be great.

Dan

--

Dave Peterson


--

Dave Peterson





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Hyperlinks don't work when emailing attachment

You did fix the hyperlinks to point back at the UNC path before you tested,
right?

If you didn't, try testing that first.

Another way is drop the Insert|hyperlink version and replace them with the
=hyperlink() worksheet function.

=hyperlink("file:///\\ktcserver\data_entry\Pending.xls","Click Me")

If you don't like that, you could actually fix the hyperlinks each time excel
opens the workbook.

You could use the code from David McRitchie's site to get started:

http://www.mvps.org/dmcritchie/excel/buildtoc.htm
look for:
Fix Hyperlinks (#FixHyperlinks)

If you're new to macros:

Debra Dalgleish has some notes how to implement macros he
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

DG wrote:

Dave,

It did not work. Now the path says C:\data_entry\Pending.xls.

I even saved it out of my email to my desktop and received the same result.

Any other ideas?

Dan

"Dave Peterson" wrote in message
...
Please post back with your results--good or bad.

Thanks.

DG wrote:

Thanks I'll try tomorrow.

"Dave Peterson" wrote in message
...
A few people have said that this has stopped a similar problem from
occurring.
Maybe it'll help you--but you'll have to test it to make sure.

In xl2003 menus:
File|Properties|Summary Tab|Hyperlink Base
change it to C:\
(something that's always available)

In xl2007:
Click on the Office button
Choose Prepare, then properties.
Then use the arrow on the Document Properties dropdown
Choose Advanced Properties
And then change the hyperlink base on the Summary tab.



DG wrote:

I have an excel spreadsheet that has hyperlinks to files on a network
drive
file:///\\ktcserver\data_entry\Pending.xls. When I email this
(internally)
as an attachement in Outlook, the receivers can't follow the link. It
points to the Temporary Internet Files\OLKC\....

What do I have set wrong? It worked last week.

FYI the file is password protected. I sent it to myself and tried
opening
read only and with the write password. No difference.

Any help would be great.

Dan

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
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
Emailing an Excel document with hyperlinks klappin Excel Discussion (Misc queries) 3 March 17th 09 09:30 PM
emailing excel worksheet from excel program d/n work? how to fix? karlv Excel Worksheet Functions 1 September 19th 08 04:21 PM
Problems emailing attachment from Excel scrapper777 Excel Discussion (Misc queries) 3 October 30th 07 07:54 PM
Hypoerlink to a Local file and emailing the file as an attachment JohnH Excel Discussion (Misc queries) 0 January 2nd 07 06:45 PM
why does a workwook increase in size when emailing as attachment paula Excel Discussion (Misc queries) 1 July 20th 05 05:35 AM


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