Hi all,
Think this is one for the guru's out there.
I have an old table structure which needs to be exported into a new table structure.
The old structure is as follows:
field1, field2, field3
field3 is a memo field which stores result data in an array in the following format:
1,1,2#1,2,1#,1,3,1#1,4,1# and so on....
I need to move the old structure of field1 and field 2 into the new table but at the same time breaking up the array in field3 and insert the individual numbers into individual fields (field4, field5, field6) in the new table of the same record.
Take the above array as an example:
1,1,2# = Section 1, Question 1, Answer Provided = 2, (which is = 1,1,2) and then i used a # to separate each element in the array.
So my new structure should be:
field1, field2, field3, field4, field5 (where field3, 4 and 5 contain the individual elements from the array in the old structure)
Its way above my head.
Thanks in advance.
K.