Hi, does the "=" operator work for multiple criteria? so...
[ORG]='10','12','15'
Will = work for multiple criteria or on one ex. just org 10?
If not is there a command that works to look for multiple criteria?
Thanks!
try [ORG] in ('10','12','15')
The single quotes indicate that the values are strings. If they are numeric you would not need to use them. You ought to match the data type of the query item which you are using as the operand.
Awesome! Worked Great!