Let me try to clarify a little. I am doing a survey. My database is set up so that each record represents a survey, and each field represents a question. So the data in each field is the answer to the question for that survey. So let's pretend that I have a series of questions where the possible answers are the same i.e.(agree, disagre, no opinion). I have three questions in a row, where those are the only possible answers. So, the field names are "Question1, Question2, Question3", and the data in those fields could be a string either("agree""disagree""no opinion"

. Now I need to make a cross-tab in which the row headings, are the name of the questions, and the column headings are the possible answers(agree, disagree, no opinion). The cells should be the count of surveys who answere accordingly to each question...
agree disagree no opinion
question1 45 33 21
question2 10 85 03
question3 14 27 35
that is a visual example of what I need to do. I was under the impression that I had to create a group which encompassed all three fields(questions). I would just do it manually, but there are TONS of questions so I need to make a cross-tab I think.