Hello,
I am working on a custom form template for our organization's Erosion Control Inspector and I'm stumped on how I can make the form somehow show a mark/symbol/bullet if it is checked in the mobile survey. He will be using the survey in the field for his inspections, and will then come back to the office to run the reports as needed for notifying developers/contractors of their inspection results.
I've managed to get the rest of the form set up properly and am pretty please with it, however, I am truly stumped on how to make the form populate the cells next to the violations section of the inspection form if they are selected in the field.
The first two screenshots are the Survey123 Connect survey tab and the choices tab:
This is the list of options for the inspector to select in the Survey123 mobile app.
And this is the section of the Microsoft Word Template that I have created for this portion of the inspection that I haven't figured out. I've included a cell next to each possible single or multiple violation that may be selected so I'm assuming that's where I would need to put whatever it is necessary to populate those cells somehow when running a report that includes one or some of them.
Thank you so much in advance for any advice those of you more experienced than me, may be able to offer.
Solved! Go to Solution.
First off, if you have syntax questions I highly recommend checking out the "Quick Reference" section that's available when uploading a report template! If anything, it can be useful for copying and pasting into your template since it references exact field names from your survey.
To answer your specific question, for the first cell in your table next to "a. No Approved Plan", you'd put in a conditional statement like this:
${violations | checked:"noapprovedplan"}
That will generate a checkbox in the final report output that will either be empty or checked depending on the answer to the question.
Hope that helps!
First off, if you have syntax questions I highly recommend checking out the "Quick Reference" section that's available when uploading a report template! If anything, it can be useful for copying and pasting into your template since it references exact field names from your survey.
To answer your specific question, for the first cell in your table next to "a. No Approved Plan", you'd put in a conditional statement like this:
${violations | checked:"noapprovedplan"}
That will generate a checkbox in the final report output that will either be empty or checked depending on the answer to the question.
Hope that helps!
I must be really blind because I never saw that quick reference link. LOL! What you offered worked so I thank you so much for your help!
Oh, no worries, glad I could help! 🙂