Move not remove dupes (1 Viewer)

mohobrien

Registered User.
Local time
Today, 05:17
Joined
Dec 28, 2003
Messages
58
I have a table that I'm trying to sort into different new tables or at least new fields. The original is like this:
A
B
B
C
C
C
D
E
E
and I'm trying to output this:
A
B B
C C C
D
E E

Is there a way without using vba to iterate through the table?
 

Jon K

Registered User.
Local time
Today, 12:17
Joined
May 22, 2002
Messages
2,209
With queries, the closest you can get is something like the following:
Code:
Fld	Dup1	Dup2	Dup3
A	A		
B	B	B	
C	C	C	C
D	D		
E	E	E

The contents of the first column will be repeated - a limitation of crosstab query.
.
 

Users who are viewing this thread

Top Bottom