hyperlink base address

G

Guest

in a worksheet, how do i set the base address for hyperlinks? i hyperlink
hundreds of product photos to item numbers in my inventory worksheet. when
inserting hyperlinks i have to move up the directory numerous levels to get
to my vendors folder where i store the item photos. i have tried the process
microsoft recommends but it doesn't work.
 
G

Guest

Have you tried this?:

In the Workbook with the hyperlinks:
File>Properties>Summary
•Hyperlink Base: Enter whatever base path you need.

All workbook hyperlinks will be saved relative to that setting.

Does that help?

••••••••••
Regards,
Ron
 
G

Guest

hi ron
yes i have tried that, no change.

Ron Coderre said:
Have you tried this?:

In the Workbook with the hyperlinks:
File>Properties>Summary
•Hyperlink Base: Enter whatever base path you need.

All workbook hyperlinks will be saved relative to that setting.

Does that help?

••••••••••
Regards,
Ron
 
D

Dave Peterson

Maybe if you change the hyperlink base to C:\, then the link will keep its
correct name--instead of excel trying to shorten it.

ps. I like to use the =hyperlink() worksheet function. I've never seen excel
mess with those.
 
D

Dave Peterson

Looking in Excel's help would describe it greater detail, but it's a worksheet
function:

=HYPERLINK(link_location,friendly_name)

Kind of like:
=HYPERLINK("http://www.microsoft.com","Click here to go to MS's site")
or
=HYPERLINK("file:////c:/my documents/excel/book1.xls","Click to open")

If the files all exist in one folder, I can put that folder name in A1 and the
filenames in (Say) A2:A99.

Then I can use this kind of thing in b2:B99:

=hyperlink("file:////" & $a$1 & a2, "Click to open")
or even
=hyperlink("file:////" & $a$1 & a2 & ".jpg", "Click to open")

depending on what I put in A2:A99.

Then if the folder changes name, I just fix A1 and all my links are adjusted.
 
G

Guest

Thanks Dave, i'll give it a try.

Dave Peterson said:
Looking in Excel's help would describe it greater detail, but it's a worksheet
function:

=HYPERLINK(link_location,friendly_name)

Kind of like:
=HYPERLINK("http://www.microsoft.com","Click here to go to MS's site")
or
=HYPERLINK("file:////c:/my documents/excel/book1.xls","Click to open")

If the files all exist in one folder, I can put that folder name in A1 and the
filenames in (Say) A2:A99.

Then I can use this kind of thing in b2:B99:

=hyperlink("file:////" & $a$1 & a2, "Click to open")
or even
=hyperlink("file:////" & $a$1 & a2 & ".jpg", "Click to open")

depending on what I put in A2:A99.

Then if the folder changes name, I just fix A1 and all my links are adjusted.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top