B
Bob Barrows [MVP]
You need to check for the existence of the checkbox variables and passGaby said:I tried what you said and it worked. The only thing I need to add if
making it ok to leave data out. I would get a error if I left
checkboxes unchecked. During the actual survey, it will be ok for
students to leave boxes blank if they do not apply. Is there anyway
to code it so that incomplete data is allowed?
true if they exist and false if they don't. Generically:
checkboxvalue = false
if len(request.form("checkbox")) > 0 then
checkboxvalue=true
else
checkboxvalue = false
end if
This can be done in the data validation step I described in my previous
post.