Hello all,
Unfortunately, we let our de-duplication process go for a while and now have a large list to tackle. For planning reasons I'd like to know how many potential duplicates there are. I can see the list on the Merge Potential Duplicates screen but I'm wondering if I can export that list somehow or if there exists a report that will give me the info.
Thanks in advance,
Ellen
If you have access to the database then you can just run this query to get a count.
select COUNT(customer_no) from T_POTENTIAL_DUPS
Thank you, Grant.