G Gunit Registered User. Local time Today, 06:24 Joined Aug 29, 2004 Messages 32 Sep 13, 2004 #1 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: Sep 13, 2004
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
sfreeman@co.mer Sam_F Local time Today, 04:24 Joined Aug 2, 2004 Messages 272 Sep 13, 2004 #2 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
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
G Gunit Registered User. Local time Today, 06:24 Joined Aug 29, 2004 Messages 32 Sep 13, 2004 #3 Thanks! So easy!