Hello everyone!
I'm trying to mimic a Salesforce report and I'm using multiple AND and OR statements within the multiple Filter functions. The attached shows the combinations that I need to match. What I'm stuck on is the very last part "((7 AND 8) OR 9)". Below is what I wrote in my last Filter function, but it doesn't seem to work properly:
([Date_Job_Closed__c] > "2023-01-03"
AND
[Close_Reason__c] IN ("Work Completed - Not Renewing","Job Cancelled"))
OR
([Close_Reason__c] = "Work Completed - Renewed"
OR
[Close_Reason__c] = "Previous Job Cancelled"
OR
IsNull([Close_Reason__c]))
Am I doing this incorrectly, and moreover, is there a way to use just one Filter function (or anything else) instead of multiple? I'm pretty new at using Alteryx so please let me know if I should provide any more info! Thanks in advanced