ACC: Sample Table Design to Support Questionnaire ApplicationsLast reviewed: April 2, 1997Article ID: Q101675 |
The information in this article applies to:
SUMMARYNovice: Requires knowledge of the user interface on single- user computers. This article describes a table design that you can use for an application that tallies results from questionnaires and surveys.
MORE INFORMATIONThe following examples outline nonrelational table design commonly used for questionnaires and surveys and suggests an improved, relational table design. Nonrelational Table Design When designing tables for questionnaire applications, many users begin with a design that resembles the table below. Each record contains multiple fields, called Question1 through Question<n>, that contain responses to the questions.
Table: Table1 (old) -------------------------------------- FieldName: Respondent ID [Primary Key] FieldName: Question1 FieldName: Question2 FieldName: Question3 . . . FieldName: Question<n>Problems occur when you want to perform crosstab queries to summarize and/or graph the questionnaire results.
Relational Table DesignA relational table design better supports summary queries, reports, and graphs. In the table below, the Question ID field identifies the question and the Response field contains the answer.
Table: Table2 (new) ---------------------------------- Field: Respondent ID [Primary Key] Field: Question ID [Primary Key] Field: Response How to Switch to Relational Database DesignTo convert data that has been entered in Table1 format, follow these steps:
REFERENCESFor more information about append queries, search the Help Index for "append queries," or ask the Microsoft Access 97 Office Assistant.
|
Additional query words: cross tab append questionnaire flat file survey
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |