I have an access database table with 2 fields: first is key, second is text... the text field has values separated by a '/' i.e. for the value 1 of the key field, the value of text field is "A3/B4/C5" what I need is a script to separate the values and put them in another table each in a record so that the result would be 3 new record in the other table with values
(1, A3)
(1, B4)
(1, C5)
(1, A3)
(1, B4)
(1, C5)