I have a file with this structure:
User1, date
User1, date
User1, date
User2, date
User3, date
User3, date ...
In other words, a list of people with dates against them. Each person may have 1-24 dates and this is currently appearing as multiple rows.
I'm trying to get to the following structure:
User1, date, date, date
User2, date
User3, date, date ...
That is, one line per user, with all recorded dates on the same line.
Any suggestions appreciated.
Thanks.
User1, date
User1, date
User1, date
User2, date
User3, date
User3, date ...
In other words, a list of people with dates against them. Each person may have 1-24 dates and this is currently appearing as multiple rows.
I'm trying to get to the following structure:
User1, date, date, date
User2, date
User3, date, date ...
That is, one line per user, with all recorded dates on the same line.
Any suggestions appreciated.
Thanks.