jdawg_1989
Registered User.
- Local time
- Today, 22:42
- Joined
- Apr 8, 2011
- Messages
- 21
I have a table that has the following content in it.
Field1.
.1/1/1/1
.1/1/2/1
.1/1/3/1
.1/1/4/1
and so on...
I want to split the records across 4 new fields so it becomes.
Field 2, Field 3, Field 4, Field 5
.1, 1, 1, 1
.1, 1, 2, 1
.1, 1, 3, 1
.1, 1, 4, 1
I import this field from a .csv file on a regular basis so I want to write some code that I can run after the import.
Thanks in advance for you help.
Field1.
.1/1/1/1
.1/1/2/1
.1/1/3/1
.1/1/4/1
and so on...
I want to split the records across 4 new fields so it becomes.
Field 2, Field 3, Field 4, Field 5
.1, 1, 1, 1
.1, 1, 2, 1
.1, 1, 3, 1
.1, 1, 4, 1
I import this field from a .csv file on a regular basis so I want to write some code that I can run after the import.
Thanks in advance for you help.