correcting fields

  • Thread starter Thread starter Jean-Paul
  • Start date Start date
What is the datatype of the field where these values appear? If it is a text
field, you could use an update query:

UPDATE yourTable
SET [yourField] = Left([YourField], instr([yourField], "#") - 1)
WHERE instr([yourField], "#") > 1

I don't work with hyperlink fields much, so I'm not sure whether this would
work with that type of field or not.

--
HTH
Dale

email address is invalid
Please reply to newsgroup only.
 
Back
Top