This script disqualifies respondents if they answer "No" to the question "Are you interested in learning more about our financial advising services?" and only answer a total of 2 questions.
Example Lua Script
interest = getvalue(13)
numberAnswered = questionsansweredonpage(1)
if (interest == "No" and numberAnswered < 3) then
disqualify("You have been disqualified.")
end