How would I code a clause so that text appears only if the user answers a question? For example if I want to show “; mother’s name: #subject^mother-name” inline only if the question “What is the mother’s name?” is answered in the Q&A?
Hi Chuck,
In that case you would use a condition worded like this:
{#subject^mother-name: Mother's name: #subject^mother-name}
Essentially, this condition says: "only if a value is assigned to the datafield #subject^mother-name
do we show the text "Mother’s name: #subject^mother-name"
Hope that answers your question!
Perfect, thanks!