In our ERP database, all lines of customer addresses are stored in one field, with 4 lines possible. Example of how data is stored in the field:
1234 West;;;
1234 west; P O Box 556;;
1234 west; P O Box 556; suite 1234;
1234 west; P O Box 556; suite 1234; floor 12
With the number of lines per address per customer varying, how do I split this one field into 4 separate fields? I was able to get the first line with:
Left({addressfield},Instr({addressfield},";"-1)
But am now stuck.
TIA for any suggestions!
1234 West;;;
1234 west; P O Box 556;;
1234 west; P O Box 556; suite 1234;
1234 west; P O Box 556; suite 1234; floor 12
With the number of lines per address per customer varying, how do I split this one field into 4 separate fields? I was able to get the first line with:
Left({addressfield},Instr({addressfield},";"-1)
But am now stuck.
TIA for any suggestions!