Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to remove # (pound sign) from table field

Status
Not open for further replies.

johngordon

Technical User
Jun 29, 2002
112
0
0
US
I need to remove the # (pound sign) from all of the records (9000+) in a table field. I have tried using Find & Replace, with no success.

Does anyone have any other ideas on how to do this?

Thanks,

John
 
You could use an Update query, the precise syntax would depend where in the field the # is.

Hope this helps.
 
Depending of your version of access you may try this update query:
UPDATE yourTable
SET yourField=Replace([yourField], '#', '')
WHERE yourField Like '*[#]*'

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top