Jallen:
How you implement this depends on how you are manipulating the data (importing, etc).
Basically, you want a function that looks in the string to find the point where the second part begins with the '9' and then extracts only from that point to the right.
The code would look something like this:
Dim intStart as Integer
Dim intLength as Integer
intLength = Len(FieldName)
intStart = InStr(FieldName,'9')
FieldName = Mid(FieldName, intStart, intLength - (intStart - 1)
intLength captures the length of the entire string;
intStart captures the position of the '9' where the second part begins.
The syntax of the Mid function is String Name, Starting Point, Number of Characters. You must subtract 1 from intStart or you will lose the last character of the string.
This should get you going; check help for more info on the functions.
If you can tell me how you need to implement this, I can give you a bit more help in how to do it.
Larry De Laruelle
larry1de@yahoo.com