hyperlink

M

Maggie

Hello, I'm storing a hyperlink in an Access table which
links to architect drawings that are stored on a server
J:/APS Projects/2002/Buctel/drawings. There are over 100
of these drawings. After 2 years these drawings are moved
to a folder called "Archive". How do I quickly change the
path that is stored in the table from
J:/APS Projects/2002/Buctel/drawings to
R:/Archive/2002/Buctel/drawings without changing each
individual record?

Or is there a different way to do this that is more
efficient? Thanks Maggie
 
P

Pavel Romashkin

UPDATE MyTable SET ArcDrawingsPath = "R:/Archive/2002/Buctel/drawings"
WHERE DrawingIssueDate > Date() + 365*2

Pavel
 

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