S
Serghei
There is a table with redundant data as columns.:
Table 1. Equipment
-------------------------------------------------
AU# | serial#1 | serial#2 | serial#3 | serial#4
1 001 002 003 004
..
..
..
..
12 1 2 3 4
....etc
-------------------------------------------------
this is how I receive the table.
I need the results look like
---------------
AU# | serial#
1 001
1 002
1 003
1 004
......
12 1
12 2
12 3
12 4
etc
The quickest solution I see is to break Table 1, into four
different tables and then join them based on AU#. I find
it time-consuming, not efficient, but it gives the
results. I was working on self-joins, but did not get the
results(perhaps did something wrong to the quiery.
Do you think it could be some ways to use SQL, ACCESS, VBA
to get the desired results?
Thank you very much,
Sergei
Table 1. Equipment
-------------------------------------------------
AU# | serial#1 | serial#2 | serial#3 | serial#4
1 001 002 003 004
..
..
..
..
12 1 2 3 4
....etc
-------------------------------------------------
this is how I receive the table.
I need the results look like
---------------
AU# | serial#
1 001
1 002
1 003
1 004
......
12 1
12 2
12 3
12 4
etc
The quickest solution I see is to break Table 1, into four
different tables and then join them based on AU#. I find
it time-consuming, not efficient, but it gives the
results. I was working on self-joins, but did not get the
results(perhaps did something wrong to the quiery.
Do you think it could be some ways to use SQL, ACCESS, VBA
to get the desired results?
Thank you very much,
Sergei