Survey123 notification of image (in data)

207
1
02-19-2020 10:12 AM
codysifford
New Contributor

I am looking for a easier solution for...if someone inserts an image (takes a photo or inserts) in a image question, that within the data table, a "image_attached" fills a cell in the data form.  

Basically the people reviewing the exported excel table want to know if there is an image attached to a survey (within the table itself).  

I could add a check box or yes/no if image is attached question for the surveyor but was hoping to have this hidden and viewable in the exportable table.  

Tags (1)
0 Kudos
1 Reply
JamesTedrick
Esri Esteemed Contributor

Hi Cody,

You could have a calculate question that checks to see if the image question is filled out:

if(string-length(${imgquestion}) > 0, 'yes', 'no')

Note that there is one case where this won't work - if using the web form and taking an image with the device's camera.

0 Kudos