The 'in' function is not available in Mendix as far as i know. What you could do is use an or statement for each seperate attribute that you would like to compare to the in statement. For example
[
orderid = 1
or orderid = 2
or orderid = 3
]
OQL does have the IN operator but it's not available in xpath. Also see oql operators
Thank you all