I have a field where I would like to split the string into two fields. The string contains no spaces. The first (L-R)six characters is the postal code and the seventh character is a code#. I would like to split the postal code from the code#.
Ex.
FIELD1
V0N1Y67
V0N1Y69
V0N2X46
V0N1Y62
Desired result:
FIELD1 FIELD2
V0N1Y6 7
V0N1Y6 9
V0N2X4 6
V0N1Y6 2
This seems like it would be a common problem, but I have not been able to find a solution for it.
Ex.
FIELD1
V0N1Y67
V0N1Y69
V0N2X46
V0N1Y62
Desired result:
FIELD1 FIELD2
V0N1Y6 7
V0N1Y6 9
V0N2X4 6
V0N1Y6 2
This seems like it would be a common problem, but I have not been able to find a solution for it.