How do you type not equal to on the saved search, I am trying to display results for items where standard cost is not equal to location standard cost, I tried below operator but that doesn't work
Difference between SQL Not Equal Operator <> and !=
d
Dominic B
02/04/2021, 5:03 PM
CASE WHEN {field1} != {field2} THEN.... should work.
s
Suitestallion
02/04/2021, 5:09 PM
Thanks that worked, but it only shows the one with the value, I want to see the blank ones too, do I need to use a different formula? or change it?
d
Dominic B
02/04/2021, 5:19 PM
Use NVL on the field names to set a default value when blank
Dominic B
02/04/2021, 5:20 PM
Or add another statement after the first such as CASE WHEN {field} is NULL