Hello,
I am trying to determine if it's possible to create a joined report for leads and orders. the leads reporting would need to be unique by email (we don't want to count duplicates using email as the unique key). We would need a count of leads created by month/year. then we want to see sold orders month/year. And finally a closing (sold orders) percent based on number of leads entered monthly.
I think the 'removing duplicates' by email is the part that would make this not possible?
#Reporting
Yes, exactly - a record-triggered Flow on Lead (after-save, on create). It does a Get Records for other Leads with the same Email where Id is not this record; if that comes back empty, this is the first lead with that email, so it updates this record to check a 'Primary for Email' box. So exactly one lead per email ends up flagged, and a report Count of that checkbox = your unique-by-email number.
Two quick notes: run it once across your existing leads to backfill the flag, and if a flagged lead is ever deleted you'd want a small cleanup to re-flag the next one. Then your joined Leads + Orders report can divide sold orders by that monthly flagged-lead count for the close rate.
If this helps, please mark it as the Best Answer so it helps the next person - thanks!