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 Script
%%interest = sgapiGetValue(13);
%%numberAnswered = sgapiQuestionsAnsweredOnPage(1);
if (%%interest == "No" && %%numberAnswered < 3)
{
sgapiDisqualify("You have been disqualified.");
}