MS Access 2003
I have a table called tblHistory with the following fields...
HistRev MOrder HistNotes HistDate
with the below data rows. It is semicolon delimited.
I need to parse the records to a new table called tblDestination
HistRev
1;2;3
1;2
MOrder
abc123
xz123
HistNotes
Save;Submit;Cancel
Initiate;Save
HistDate
2009-06-22 01:41:16 PM;2010-06-23 02:31:16 PM;2010-08-22 04:41:16 PM
2010-06-23 02:31:16 PM;2010-08-22 04:41:16 PM
I need the new field records in tblDestination to look like
HistRev
1
2
3
1
2
MOrder
abc123
abc123
abc123
xz123
xz123
HistNotes
Save
Submit
Cancel
Initiate
Save
HistDate
2009-06-22 01:41:16 PM
2010-06-23 02:31:16 PM
2010-08-22 04:41:16 PM
2010-06-23 02:31:16 PM
2010-08-22 04:41:16 PM
Please, please help
I have a table called tblHistory with the following fields...
HistRev MOrder HistNotes HistDate
with the below data rows. It is semicolon delimited.
I need to parse the records to a new table called tblDestination
HistRev
1;2;3
1;2
MOrder
abc123
xz123
HistNotes
Save;Submit;Cancel
Initiate;Save
HistDate
2009-06-22 01:41:16 PM;2010-06-23 02:31:16 PM;2010-08-22 04:41:16 PM
2010-06-23 02:31:16 PM;2010-08-22 04:41:16 PM
I need the new field records in tblDestination to look like
HistRev
1
2
3
1
2
MOrder
abc123
abc123
abc123
xz123
xz123
HistNotes
Save
Submit
Cancel
Initiate
Save
HistDate
2009-06-22 01:41:16 PM
2010-06-23 02:31:16 PM
2010-08-22 04:41:16 PM
2010-06-23 02:31:16 PM
2010-08-22 04:41:16 PM
Please, please help