Hi
I have a table with these two fields, among others
Item ............................ Related items
1 3,4,5
2 6,7,8
3
4
6 11
7 15,18
If [Item] 1 is late to arrive, I need to notify [Related Items] of the lateness. To do this, I would need to create intermediate table on the fly and looks like this:
Item Related Item
1 3
1 4
1 5
6 11
7 15
7 18
.
.
.
the table is large. Therefore, I am trying to avoid writing a VBA to parse the string to array and then write the arrays to a Table. It would take too long.
I would appreciate a pointer to how to structure a query to so.
thank
Mike