Please only use this to answer the original question. Otherwise please use comments.
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.
2 Answers
0 votes
Make sure you don't have quotes around the number.
Data in SSI Web is either a number or text. SSI Web gives this error when it enforces that text is only compared to text or that numbers are only compared to numbers.
Something like this would give the error:
"hello" = 5
Something like this would not give the error:
"hello" = "5"
Check to make sure that the types of data you are comparing are the same. For example, comparing the answers to an open end and a numeric question would give the error.
Occasionally there may be a time that you're absolutely certain what you're doing is correct or allowed -- there are some helper functions that will coerce the verifier into allowing these situations to pass. These functions are:
NumberToString(Number)
NumbertoBoolean(Number)
StringToNumber(String)
BooleanToNumber(Boolean)
This SSI Script will pass through the verifier.
"hello" = NumberToString(5)
Beware that these functions simply satisfy the verifier -- be sure to test that your survey functions correctly!