I want to check in a single Event condition if a text/string variable has either of two possible values. In a similar way that you can set a value like "This text " & "this text " & "will be set to a variable.", where the & serves as a kind of "link" (I don't know the tech geek term) to all the values wanting to be equally stored to the variable.
However, what if I want to check if EITHER of the values are already in the variable?
Similar to how we can make an Event block an OR block, is there a cousin to the & that functions as a sort of Boolean for a single variable test comparison (condition)?
+ System | Variable = "This" OR "That"
So the condition would be satisfied if either "This" or "That" was the Variable value. If such an option exists, what symbol do I use?