Hi
I added a field to a table and specified it as a hyperlink.
I then open my form in design mode and added that field.
I copied the xls file I wanted to call to the same directory and the database file.
I then right clicked on the hyper link and selected edit and browsed to my file "Plot_A.xls"
when I opened the table and clicked on the hyperlink the excel file opened.
So I then copied that hyperlink and created the update
Code:
UPDATE tblDeceased SET tblDeceased.PlotMap = "Plot_A.xlsx"
WHERE (((tblDeceased.Plot)="A"));
And it works perfectly except that the hyper link does not work.
I the n went into one maunally edited the hyperlink and pointed it to the file and it worked.
In html a hyperlink comprises of two parts the link text and the link itself [CODE<A HREF="http://www.htmlgoodies.com">Click Here for HTMLGoodies</A>
Is Access the same if so how do I copy the complete code so that I can use it in my update query to update all 37000 records.
I have to run the query 28 times as the plots are A,B,C,D, E etc but thats not a serious issue ;-)
thanks
Ian
][/CODE]