Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
As suggested, Left(), Mid(), RIght(), Subfield() and several other "String Functions" (search for them in Help) can be used to split strings into substrings.
Hi,
Can you be more specific, please? Your question is too vague, it doesn't convey the problem.
Cheers,
In this case, you can derive new fields using the Left() and Mid() like this;
Left(Trim(FieldName), 2) as FirstTwo
Mid(Trim(FieldName), 3) as AfterFirstTwo
As suggested, Left(), Mid(), RIght(), Subfield() and several other "String Functions" (search for them in Help) can be used to split strings into substrings.