Hey all - I'm trying to come up with a filter expr...
# suitescript
t
Hey all - I'm trying to come up with a filter expression that will allow me to see if an item name contains one color OR another color. I tried doing something like this: filterExp.push(['item', 'contains', 'blue']; filterExp.push('or', ['item', 'contains', 'red']) - however, these filters are returning the same item over and over because it has 'blue' in it's name. Is there anyway I can use an array of colors inside a search filter?
l
What do you mean by returning the same item over and over?
Like multiple line items?