An outside agency is requiring me to report data for each instance of my dataset on multiple lines. Right now I can export the data in this form:
1-V1, 1-V2, 1-V3, 1-V4, 1-V5, 1-V6, 1-V7, 1-V8, 1-V9
2-V1, 2-V2, 2-V3, 2-V4, 2-V5, 2-V6, 2-V7, 2-V8, 2-V9
where 1-V1 means first instance, variable 1. I need to put the information into a text or CSV file in the form
1-V1, 1-V2, 1-V3
1-V4, 1-V5
1-V6, 1-V7, 1-V8, 1-V9
2-V1, 2-V2, 2-V3
2-V4, 2-V5
2-V6, 2-V7, 2-V8, 2-V9.
Right now the query reads:
SELECT V1, V2, V3, V4...V9
FROM Table
GROUP BY V1, V2, V3, V4...V9.
Is there a way to do this in Access? Thanks for your help.
I'm using a windows 7 version of Access 2010. Both are 32bit.