Remove Last 3 Characters from Field Data

dj_mix

Registered User.
Local time
Today, 06:29
Joined
Aug 30, 2006
Messages
39
I trying to figure out how to remove the last 3 Characters from my data

Such as

MA-D-97
MA-09
UJS-KK-OL-20

Like the data to look like

MA-D
MA
UJS-KK-OL

I Have This so far

Right([TYPEFY],3)

that selects the last three now is there a remove function I can use??

Remove(Right([TYPEFY],3) ???

Need help thanks
 
Try Left([TYPEFY],Len([TYPEFY])-3)
 
Very Nice I went with the majority

Left([TYPEFY],Len([TYPEFY])-3)

Thanks again
 

Users who are viewing this thread

Back
Top Bottom