QUOTE
Load the tables in unavoidable
Wrong...I would strongly encourage you to read up on normalization...with this scenario you should have a seperate questions table which holds 324 records and is linked to your other records table. What happens if you need to add or delete a question...you wouldn't want to modify the table design, but rather just work with the records within the table.
Furthermore, search UA for many sample data models for survey questionnaires. They will help you set up your structure correctly.
HTH
Good luck