DanWallace
Registered User.
- Local time
- Today, 17:09
- Joined
- Dec 5, 2008
- Messages
- 40
I have a table that does not have a primary key set. Because of this, I have records with duplicate customer numbers. I can get rid of these easy enough, but I don't want to lose the data in any of the fields. What I need to do is create a query or a couple of queries that will take all the data for each record and concatenate it together when there are duplicates. Here is an example:
After running this query I need to build, the new table would look like this:
Any suggestions?
Thank you.
(By the way, I'm using Access 2007 and I'm trying to avoid resorting to using code for this)
Code:
CUSTNO LOTNO PHASENO
123 5 150
124 14 678
124 15 700
125 32 86
Code:
CUSTNO LOTNO PHASENO
123 5 150
124 14/15 678/700
125 32 86
Thank you.
(By the way, I'm using Access 2007 and I'm trying to avoid resorting to using code for this)