View Full Version : Update Query


Ganley
04-30-2007, 06:49 AM
Can anyone help me.

Attempting to run an update query to strip out some information from a table.

Basically I want to remove the Tél : information & leave just the telephone number

Tél : (+41 22) 718 10 00


Any ideas.


Thanks.

miguel vasquez
04-30-2007, 07:17 AM
I would insert a Right() formula in the Query. For instance, If you just want to see the last 9 digits(including space), I Would use it like this :
Telephone : Right([field Name], 9)

Ganley
05-01-2007, 02:23 AM
Thanks Miguel.