Was it here that I had someone show me how to comp...
# suiteanalytics
k
Was it here that I had someone show me how to compare a multiselect field to a standard list field in a saved search?
n
I dont know if it was here. If I was checking to see if standard field is in the selections I would be thinking something like CASE WHEN {standard list value} IN {multiselect field} THEN...
k
This was suggestion from a colleague of mine.
TO_CHAR(INSTR({multiselect field},{single compare field})) != '0'
n
Did either of them work for you?
k
Trying it out today. The case when in doesn't work
Haven't had a chance to try it yet :/
Going to try this at some point today...
This isn't quite working the way I'd hoped - mainly because of false positives.
Still trying out some other ideas.
Ran out of ideas. Can't source the field from the customer to the transaction in order to join to internal IDs of the ship methods, which would at least reduce the odds of a false positive.
I solved this - in about the dumbest way possible.
Dumb Solution:
TO_CHAR(INSTR({customer.custentity_po_free_ship_methods}||',',{shipmethod}||','))
Insert a concatenated comma after each text string - this eliminates the false positives because there's always a comma after the value you are looking for.
1