Hey! :)
For the conditiona logic options
What exactly do these options function for:
Is:
Is not:
Greater Than:
Less Than:
Contains:
Starts With:
Ends WIth:
Thank you!
Daniel
Hey! :)
For the conditiona logic options
What exactly do these options function for:
Is:
Is not:
Greater Than:
Less Than:
Contains:
Starts With:
Ends WIth:
Thank you!
Daniel
They do exactly what they say. They are comparison operators. So you can show a field if another field contains the word SHOW for example.
Thanks!
What is the difference between "Is" and "Contains?
Daniel
When you do a comparison, is is exact, contains is not.
Say you have a field that contains three answers:
Answer 1 is Go
Answer 2 is Go Jump
Answer 3 is Rest
If the user selects the second field and your conditional logic is:
Show this field if field2 is Go
then it won't show, but if your conditional logic is:
Show this field if field2 contains Go
Then field 2 will show when the user selects Answer 1 or Answer 2