I have an input table with fields in this simplified form.
Company, Category, Score, Comment
The data looks like this
Company A, Category A, Score A, Comment A
Company A, Category A, Score B, Comment B
Company A, Category A, Score C, Comment C
Company A, Category A, Score D, Comment D
then repeated for 40 companies and 10 categories.
For reporting purposes I'd like the data in the form
Company A, Category A, Score A, Score B, Score C, Comment A, Comment B, Comment C, Comment D
Is there a way of doing this without using a huge set of queries that are then joined?
Company, Category, Score, Comment
The data looks like this
Company A, Category A, Score A, Comment A
Company A, Category A, Score B, Comment B
Company A, Category A, Score C, Comment C
Company A, Category A, Score D, Comment D
then repeated for 40 companies and 10 categories.
For reporting purposes I'd like the data in the form
Company A, Category A, Score A, Score B, Score C, Comment A, Comment B, Comment C, Comment D
Is there a way of doing this without using a huge set of queries that are then joined?