I found this question on Stack Overflow and it is my exact issue. It was solved, but I am using an Access database and apparently some of the functions described in the solution are not available in Access. How can I achieve that result in Access?
I have a table as follows:
ID  User  PageURL  
1    Me     ab     
2    Me     cd     
3    You    xy     
4    You    st
I want to group by User such that I end up with something like:
User  PageURL  
Me    ab, cd     
You   xy, st
As you can see, the column PageURL is combined together separated by a comma based on the group by.
 
    