L
Lafayette
I've got a table in the following structure:
Group# Name
1 Joe
1 Mike
2 Tom
2 Jack
The new table I have in mind looks like
Group# Names
1 Joe, Mike
2 Tom, Jack
It summarizes the original table by groups, combining the field "name".
Can it be done in query? Thanks for any advice.
Group# Name
1 Joe
1 Mike
2 Tom
2 Jack
The new table I have in mind looks like
Group# Names
1 Joe, Mike
2 Tom, Jack
It summarizes the original table by groups, combining the field "name".
Can it be done in query? Thanks for any advice.