Login
Register
Questions
Unanswered
Tags
Users
Ask a Question
Tips
Sawtooth Software Home
Most popular tags
cbc
lighthouse-9
acbc
ssi-web
ssi-web-8
maxdiff
cbc-hb
grid-question
javascript
constructed-list
unverified-perl
ssi-web-7
free-format
skip-logic
alternative-specific-design
select-question
willingness-to-pay
choice-simulator
cbc-latent-class
quota-control
acbc-hb
mbc
conditional-pricing
smrt
pass-in-fields
Have an idea?
Visit
Sawtooth Software Feedback
to share your ideas on how we can improve our products.
how can i insert a name not chosen in the previous question?
One of the beginning questions in my survey asks to the repondent to choose a name within 2 options. I'm using the command of [%label (QX)%] for inserting the selected/chosen name into the following questions' text but I need to insert the other name/Not chosen name into some of the questions as well. I appreciate any feedback regarding to if/how I can do it. (QX stands for the Question X.)
Thank you in advance.
asked
Nov 17, 2011
by
anonymous
Your comment on this question:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
[captcha placeholder]
To avoid this verification in future, please
log in
or
register
.
Your solution to the original question
Please only use this to answer the original question. Otherwise please use comments.
Your name to display (optional):
Email me at this address if my answer is selected or commented on:
Email me if my answer is selected or commented on
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or
register
.
2 Answers
+1
vote
You can create a constructed list using the list QX uses as your parent list.
The constructed list will look something like this ...
ANC(QX)
Lets call this list NameNotChosenList.
This list will store the "not chosen" name. It will only contain one name given we have only 2 names to begin with.
To refer to this name in future questions, use ...
[%ListLabel(NameNotChosenList,1)%].
This will display the 1st and only name from the NameNotChosenList.
That should do the trick.
answered
Nov 17, 2011
by
Paul Moon
Platinum
(
97,670
points)
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
[captcha placeholder]
To avoid this verification in future, please
log in
or
register
.
0
votes
I would use lists in this situation
List 1 = CHOSEN - AIC(QX)
List2 = NOTCHOSEN - ANC(QX)
In the question, use listlabel(chosen,1) instead of label(QX), and listlabel(notchosen,1) where you want to show the other name.
answered
Nov 17, 2011
by
Marion
Silver
(
5,240
points)
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
[captcha placeholder]
To avoid this verification in future, please
log in
or
register
.
...