Hello, what criteria do you guys use to return sea...
# suitescript
l
Hello, what criteria do you guys use to return search results with multiselect field not being empty in SS2? I tried
[fieldId, search.Operator.NONEOF, '@NONE@']
and
[fieldId, search.Operator.ISNOTEMPTY, '']
, but both of them seem to have no effect and search returns all results regardless of multiselect value.
Seems like
['NOT', [fieldId, search.Operator.ANYOF, '@NONE@']]
is the way to go