P
Pendragon
I have a table with fields IndividualID, ItemList. ItemList is a single text
field that has items separated by a comma (e.g., "apple, orange, lemon,
lime").
I need to create a table that lists each item singly on a record.
ID = 101
ItemList = Apple, Orange, Lemon, Lime
translates to
101 Apple
101 Orange
101 Lemon
101 Lime
and so forth through the remaining records.
Can anyone point me to sample code that I can modify or play around with?
I'm not new to programming concepts and have a good idea of the necessary
algorithm, but lack the experience to set it out in VBA.
Any help is truly appreciated.
Ross
field that has items separated by a comma (e.g., "apple, orange, lemon,
lime").
I need to create a table that lists each item singly on a record.
ID = 101
ItemList = Apple, Orange, Lemon, Lime
translates to
101 Apple
101 Orange
101 Lemon
101 Lime
and so forth through the remaining records.
Can anyone point me to sample code that I can modify or play around with?
I'm not new to programming concepts and have a good idea of the necessary
algorithm, but lack the experience to set it out in VBA.
Any help is truly appreciated.
Ross