Non Monthly DD income

PHOTO EMBED

Tue Apr 26 2022 08:57:27 GMT+0000 (Coordinated Universal Time)

Saved by @Matt_Stone #gigkpi

select Transaction_Allocation__c.Close_Date__c,sum(Transaction_Allocation__c.Amount__c) amount,COUNT_DISTINCT(Opportunity__r.Id) The_Count,  Opportunity__r.CiWF_Payment_Method__c, Opportunity__r.Country_of_Ownership__c,Opportunity__r.CurrencyIsoCode 
from Transaction_Allocation__c

where 
Transaction_Allocation__c.Close_Date__c  > 2022-03-31 AND Transaction_Allocation__c.Close_Date__c  < NEXT_N_DAYS:1 

AND ((Transaction_Allocation__c.Stage__c IN ('Posted','Refunded','Failed','Refund','Reversal')

AND
Opportunity__r.CiWF_Payment_Method__c = 'Direct Debit'
     
AND
Transaction_Allocation__c.GL_Code__c IN ('50030', '50090'))
AND
((Opportunity__r.RecordTypeId ='012w00000006jGy'
AND
Opportunity__r.Recurring_Donation_Installment_Period__c != 'Monthly')
 
OR 
(Opportunity__r.RecordTypeId IN ('0122X000000ie1A')
AND
Opportunity__r.CiWF_Payment_Method__c != 'Paypal')))



Group by Transaction_Allocation__c.Close_Date__c,Opportunity__r.CiWF_Payment_Method__c, Opportunity__r.Country_of_Ownership__c,Opportunity__r.CurrencyIsoCode
content_copyCOPY