function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anonymous DeveloperAnonymous Developer 

Help Formula for this question

Create a report of Recurring Donations created in the last 7 days, where neither Received Welcome SMS or Received Welcome Email is ticked. Group by Agency
 
The report shows Contact name, RD name, RG Created date, Agency, Received Welcome SMS, Received Welcome Email
If either Received Welcome SMS, Received Welcome Email is ticked, the line will be removed from the report
AnkaiahAnkaiah (Salesforce Developers) 
Hi,

Just create summary report and group data by using Agency field and apply the filter conditions as like below.

Created date = 23/05/2022 AND  (Welcome_SMS__C = False OR Received_Welcome_Email__c = False)

There is no need to create formula field.

If this helps, Please mark it as best answer.

​​​​​​​Thanks!!