Skip survey header

getquestionoptions

Page One

Example Script

question = 2
title = "Title"
value = "Reporting"

print("Answer Option Titles: <br>")
print(getquestionoptions(question,title))
print("<br><br>Answer Option Reporting Values: <br>")
print(getquestionoptions(question,value))

Page One

Script Output


Answer Option Titles:

[
    [10005] => Very Satisfied
    [10002] => Dissatisfied
    [10003] => Neutral
    [10004] => Satisfied
    [10001] => Very Dissatisfied
]


Answer Option Reporting Values:

[
    [10005] => 5
    [10002] => 2
    [10003] => 3
    [10004] => 4
    [10001] => 1
]
1. Likert
Very DissatisfiedDissatisfiedNeutralSatisfiedVery Satisfied