My where close works for something like this:
WHERE Field_Name__c LIKE '%substring%'
The problem is that I need this field to NOT contain the substring. I have not been able to make this work.
Any help is appreciated.
Hi @jhouseslu
Try this...
WHERE (NOT Field__c like '%Substring%')
Worked like a charm! Thank you!