|
Real-Time Feedback to Respondents
|
|
| 1. Generate a Text question after the ACA questions. This question can be in any position following the last ACA Pairs question. This question will be used to display the ACA utilities report.
|
| 2. There is a template (HTML) text file installed with your system called acarpt.htm. Make a copy of that file and modify it with a text editor (such as Wordpad or Notepad) to suit your list of attributes and levels. Follow the instructions and patterns in that template file (it is helpful to know something about HTML coding when working with this file.) Copy the coding patterns as many times as needed to match your attribute list. You will note that the template refers to system functions that return part-worth utility and importance values. The attribute importances are returned with the function ACAImportance(Attribute#) (or you may use ACAStrictImportance(Attribute#) which controls for reversals). The level part-worths are returned using the function ACAUtility(Attribute#, Level#). In both cases, you will probably want to round them to the nearest integer for display purposes (using the Round function). You can use these functions at any time during an ACA interview (following the priors questions). If you are using the function within a text field (such as Header1, Header2, etc.) that uses HTML instructions, you should enclose the function within [% ... %].
|
| [% ACAImportance(ExerciseName, 4) %] (Returns the value for the importance of attribute 4)
|
| [% ACAUtility(ExerciseName, 6, 3) %] (Returns the value for the utility of the third level of attribute 6)
|
|
|
| [% Round (ACAImportance(ExerciseName, 4)) %] (Returns the value for the importance of attribute 4, rounded)
|
| [% Round (ACAUtility(ExerciseName, 6, 3)) %] (Returns the value for the utility of the third level of attribute 6, rounded)
|
|
|
| We suggest that you open (view) the template file with your browser to check your work as you modify that file. Once you are happy with the look of your report, you are ready to paste the HTML text into the Text question you have defined in the ACA questionnaire.
|
| 3. Using a Windows editor such as Word, Wordpad or Notepad, highlight the appropriate text of the renamed template HTML file you've been editing and cut-and-paste that text into either the Header, Footer or Body section of the Text question you generated in Step 1 above. When the survey runs on the Web, values will be inserted in place of the functions, and the bars in the bar chart for importances will extend the appropriate lengths to reflect the relative importance of each attribute.
|