Hello,
I am trying to lock all questions for each user if all the questions have been answered, I can easily do this in each question, but not sure how to go about and do it for all the questions. The issue is that I have several sections of questions.
Here is what I am using to lock each question answered.
this hides my edit button. I also have a field that identifies if this is the last question so I was thinking in doing something like this
But silly me this would only work if both fields are "Yes" and "Yes" in the same row.
here is where I am not sure how to go about this.
any help is as always much appreciated.
Thanks in advance!!!
I am trying to lock all questions for each user if all the questions have been answered, I can easily do this in each question, but not sure how to go about and do it for all the questions. The issue is that I have several sections of questions.
Here is what I am using to lock each question answered.
Code:
if data("Status")="Yes" then
record("edit_link")=false
end if
Code:
if data("Status")="Yes" and data("onoff")="Yes"then
record("edit_link")=false
end if
here is where I am not sure how to go about this.
any help is as always much appreciated.
Thanks in advance!!!