Preview:
select
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, CALENDAR_MONTH(Transaction_Allocation__c.Close_Date__c) Months,  CALENDAR_YEAR(Transaction_Allocation__c.Close_Date__c) Years
 
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
Opportunity__r.Date_Recurring_Donation_Established__c  < 2022-04-01
 
AND Transaction_Allocation__c.Stage__c IN ('Posted')
 
AND
Opportunity__r.RecordTypeId ='012w00000006jGy'
AND
Transaction_Allocation__c.GL_Code__c IN ('50030', '50090')     
 
AND
Opportunity__r.Recurring_Donation_Installment_Period__c != 'Monthly'

Group by Opportunity__r.CiWF_Payment_Method__c, Opportunity__r.Country_of_Ownership__c,Opportunity__r.CurrencyIsoCode, CALENDAR_MONTH(Transaction_Allocation__c.Close_Date__c),CALENDAR_YEAR(Transaction_Allocation__c.Close_Date__c)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter