How do you type not equal to on the saved search, ...
# administration
s
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
CASE WHEN {field1} != {field2} THEN.... should work.
s
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
Use NVL on the field names to set a default value when blank
Or add another statement after the first such as CASE WHEN {field} is NULL
s
that works thanks!!