R
rbeach
I have some records in a table that list up to five parts. Below is a sample
record in a table:
Order Part1 Part2 Part3
001 001 002 003
002 005 006 007
003 009 010 011
I run a query to select multiple orders and the output is as below:
Order Part1 Part2 Part3
001 001 002 003
003 009 010 010
I need the items listed as records in the query as below:
Order Part
001 001
001 002
001 003
003 009
003 010
004 011
Please let me know how to accomplish this.
record in a table:
Order Part1 Part2 Part3
001 001 002 003
002 005 006 007
003 009 010 011
I run a query to select multiple orders and the output is as below:
Order Part1 Part2 Part3
001 001 002 003
003 009 010 010
I need the items listed as records in the query as below:
Order Part
001 001
001 002
001 003
003 009
003 010
004 011
Please let me know how to accomplish this.