Is it possible to populate a question using information filled in on another question, dependent on the answer to another question?
I'm trying to modify the Damage Assessment Survey that comes in the Damage Assessment Solution to better suit my municipalities needs. We have a select one question asking if the point of contact is the property owner, an occupant, or both owner and occupant of the property. Then there's a set of questions asking point of contact's information, and another section asking owner information. What I'd like to do, is if "Owner" or "Owner/Occupant" is selected, to have the point of contact information populate into the owner information.
I tried using this expression in the calculate section:
if(selected(${represent}, 'Owner'), ${contactname}, '')
where ${represent} is the select one question described above, and the '' at the end is two single quotes to prompt leaving the question blank
I've tried the above expression, and it didn't work. I've tried the above expression with words in the final single quotes, and it worked fine UNLESS I selected "Owner". I've tried the expression with ${contactname} in single quotes, which returned a file path.
Is it possible? Am i using the wrong expression, or missing something in syntax?