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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

update query?

Status
Not open for further replies.

Zorro1265

Technical User
Nov 14, 2000
181
US
I want to seearch my table and add a period to each text string that doesnt have a period at the end of it. Should I use a query to do this or does someone have a bit of code that would do it. I don't want to type 600+ periods.
Zorro
 
If it is just one field, I would use a query:

UPDATE MyTable
SET MyTable.MyField = MyTable.MyField & "."

You will have to change the names to suit your needs. You can also do multiple columns in the same table at one time if necessary.

Hope that helps...
Terry M. Hoey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top