S
sergio.pringle
My table is something like this:
Fields: Name; Group
John; 1-1
Carl; 1-1
Brian; 1-2
Charles; 2-1
Eddie; 2-2
Carmen; 3-1
Ellen; 3-2
......and so on
What I need is to combine the field Name in group 1-1 to 1-2, 2-2,
3-2. Then 2-1 with 2-2, 3-2. Then 3-1 with 3-2.
Is this possible? If so, how can I do it?
The results from the query would be something like this:
Name A Name B Name C Name D
John(1-1) Brian(1-2) Eddie(2-2) Ellen(3-2)
Carl(1-1) Brian(1-2) Eddie(2-2) Ellen(3-2)
Charles(2-1) Eddie(2-2) Ellen(3-2)
Carmen(3-1) Ellen(3-2)
Basically every name in group1-1 can be together with group1-2
group2-2 and group3-3. Every name in group 2-1 can only be together
with group2-2 and group3-2... and group 3-1 can only be together with
3-2
thanks for the help.
Fields: Name; Group
John; 1-1
Carl; 1-1
Brian; 1-2
Charles; 2-1
Eddie; 2-2
Carmen; 3-1
Ellen; 3-2
......and so on
What I need is to combine the field Name in group 1-1 to 1-2, 2-2,
3-2. Then 2-1 with 2-2, 3-2. Then 3-1 with 3-2.
Is this possible? If so, how can I do it?
The results from the query would be something like this:
Name A Name B Name C Name D
John(1-1) Brian(1-2) Eddie(2-2) Ellen(3-2)
Carl(1-1) Brian(1-2) Eddie(2-2) Ellen(3-2)
Charles(2-1) Eddie(2-2) Ellen(3-2)
Carmen(3-1) Ellen(3-2)
Basically every name in group1-1 can be together with group1-2
group2-2 and group3-3. Every name in group 2-1 can only be together
with group2-2 and group3-2... and group 3-1 can only be together with
3-2
thanks for the help.