Modifying a Hyperlink field in a table using a query

  • Thread starter Thread starter Amit
  • Start date Start date
A

Amit

Windows XP, Access 2K
======================
Hi,

I have a table with a field "OrgURL" of the type HyperLink.
The URLs entered in the field are missing the "http://"
before it. I'd like to prefix the data in the field with
the string "http://".

I tried to do this using a query:
newURL: "http://" & [tblOrganization].[OrgURL]

It kinda worked, but the resulting new field has all the
URLs twice, like this:
http://www.yummydesigns.com#http://www.yummydesigns.com#

I'm not sure how to correct this, so that the resulting
URL is in the format: "http://www.yummydesigns.com"
(without the quotes).

Thanks for any help.

-Amit
 
Back
Top