I need to combine multiple records into one row with multiple columns for those records. Very similar to a crosstab query, but one that shows all the records, not a summary of them.
For example, if the table is like this:
I want a query that gives these results like this:
Crosstab queries are set for summarizing data, but I don't want that--I just want ALL the scores laid out in a row for each person for each month.
I'm using Access 2007 and in this case, VBA is not an option.
Any help would be much appreciated.
EDIT: See complete solution down below.
For example, if the table is like this:
Code:
Name Month Score John Jan 92 John Jan 90 John Feb 97 John Feb 91
Code:
Month Name Score1 Score2 Jan John 92 90 Feb John 97 91
I'm using Access 2007 and in this case, VBA is not an option.
Any help would be much appreciated.
EDIT: See complete solution down below.
Comment