Using dates with hyperlinks

G

Guest

i am using a very large spreadsheet with hyper links to related word files.
These hyperlinks are created automatically based on cell contents. but i am
having trouble when using a date formatted cell. currently i am using the
format ddmmyy, but when it is used as i hyperlink, its reverts back to the
serial number. is there any way to stop this?

hope i explained that right!
 
G

Guest

Try creating a folder on your desktop and dumping the word files into it.
I have a lawn mower and I would not use it to paint a house.
 
D

Dave Peterson

Either edit the hyperlink the way you want--or even use the =hyperlink()
worksheet function.

If you put a date in A1, you could use:
=hyperlink("file:////c:\my documents\word\" & text(a1,"mm_dd_yyyy") & ".doc")

(Build a string that matches the file name.)
 
G

Guest

cheers dave exactly what i was looking for.

Dave Peterson said:
Either edit the hyperlink the way you want--or even use the =hyperlink()
worksheet function.

If you put a date in A1, you could use:
=hyperlink("file:////c:\my documents\word\" & text(a1,"mm_dd_yyyy") & ".doc")

(Build a string that matches the file name.)
 

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