The expression you need would be
Left([SomeField],Len(SomeField)-12)
How you use the expression would depend on what you need to do.
To show the Name without the phone number you would use a calculated column in
a query.
Field: NameOnly: Left([SomeField],Len(SomeField)-12)
To permanently change the contents of the field, you would need an update
query where you update the field to the expression. Of course, if you do that
you will lose the phone number forever.
John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County