I have lists like the following and need to separate the strings into the alpha and numeric components in separate fields. Any help will be much appreciated.
Thanks
ORIGINAL FLD1 FLD2
FCV1031 FCV 1031
FCV1033 FCV 1033
Looking at your example, you could use left$(Original,3) and right(Original,4) to split it up. If you don't know how many alpha characters there are, you could use the val() function to look at the value of each character. If the value is zero and the character <> "0" then it's a letter.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.