-----Original Message-----
Randy, I am sorry. I am new at this, as well as Access,
Thank you for replying. It is the last two letters of the
field.
In order to remove the last two letters of the field named [State],
create a Query based on the table. Change it to an Update query (using
the query type icon, or the Query menu option).
On the Update To line type
Left([State], Len([State]) - 2)
This will calculate the length of the string in the STATE field, and
return two fewer characters - e.g. Texaszz will become Texas, ID will
become blank, and X will give you an error (since there aren't two
characters there to trim).
.