Hi,
I want to add a "not" clause in my filter query. This is to exclude certain statuses of the records I'm trying to obtain. The filter I have is the following:
Strategic_Customer__c eq TRUE and (VAR_Domain__c eq 'test.com') and not (Krow__Project_Status__c eq 'Canceled' or Krow__Project_Status__c eq 'Complete')
I want to exclude any records that have the status 'Canceled' or 'Complete. But when I ran the flow, I got a bad request error. When I removed the "not", the flow worked fine. I was wondering is the syntax above correct for using "not"?
Jason