Forum Discussion
SpiroTaleski
12 months agoValued Contributor
You can go with Salesforce SOQL or Salesforce Read Snap, using both snaps you can apply multiple conditions in the WHERE clause.
"AccountId = '" + $AccountId + "'
AND Product_Need__c = '" + $Product_Need__c + "'
AND CreatedDate = LAST_N_DAYS:90"
In your case, I will go with following approach:
- Read CSV file
- Read all Opportunities from Salesforce created within 90 days
- Match records from CSV file and Salesforce using Join Snap