ConfirmIt Sum of the values of a multiple question
Check if the sum of the values of a multiple question are bigger than 100.
//surveyscripting.com
if ((f('Q1')[1].get() + f('Q1')[2].get()) > '100')
{
RaiseError();
SetErrorMessage(CurrentLang(), "Answers must equal to 100!");
}