Is it possible to display something like a checkmark or other symbol/wingding dependent on survey responses? For example, if the selected response to select_one yes_no is yes, a checkmark is displayed on the report.
You can use the "selected" syntax in the report template and it will create a checkbox.
${question1 | selected: “answer1”}
If the above statement evaluates to True, it will return a checked box. If it evaluates to false, it will return a blank box.
Hopefully that works for what you need!