Strip - Data that is!

Gunit

Registered User.
Local time
Today, 02:25
Joined
Aug 29, 2004
Messages
32
I am pretty new at Access and would like to know how I can strip the last 3 alphanumeric char in a field. Easiest way preferred. Thanks!

I.E.

51-0054.01
51-0054.02
51-0054.03
 
Last edited:
If the field is fixed width at 10 characters, try this...

create an update query to update the field in question [here labelled Field1]

UPDATE tblOne SET tblOne.Field1 = Left([field1],7);

HTH :cool:
 
Thanks! So easy!
 

Users who are viewing this thread

Back
Top Bottom