Question
Multiple values for a Parameter
I'd like to make a parameter have more than one value. I know this would only cause problems for most applications and may not be possible.
Here's what I tried doing and how it failed:
CALLED_FROM = "2" AND CALLED_FROM = "3"
errorExtra symbols found - ignored.
CALLED_FROM = ["2", "3"]
errorRelation has an error.

