I have a table that has 10 separate fields, I need to combine them into one field. I have not had any luck getting the UNION query to work.
The 2nd field would be Pack No 2...and so on.
Can I even do these through a query or do I have to develop a module looping through each record (not very good at VBA)?
Thanks for the help.
Greg
Code:
INSERT INTO 698Engraving ( [Sequence No], Cycle, [Truck Route], [Pack No], [Pack Qty], [Pack Sort] )
SELECT Cop698D.[Sequence No], Cop698D.Cycle, Cop698D.[Truck Route], Cop698D.[Pack No 1], Cop698D.[Pack Qty 1], Cop698D.[Pack Sort 1]
FROM Cop698D;
The 2nd field would be Pack No 2...and so on.
Can I even do these through a query or do I have to develop a module looping through each record (not very good at VBA)?
Thanks for the help.
Greg