I connected my Access DB to an Excel file and executed a few simple SQL queries and I want to do something that I don't know if it is possible.
I want to group values in columns when the values repeat.
For example, here is a simple query results:
ID | Name | Color
1 John Red
1 John Yellow
2 Bill Red
2 Bill Blue
2 Bill Black
I would like the results to be presented in that way:
ID | Name | Color
1 John Red
Yellow
2 Bill Red
Blue
Black
Is that possible?
Appreciate your answers!
Thanks.