Skip to main content

Dedupe type in civicrm

In civicrm, there is Dedupe functionality which check the duplicate contacts & merge it .
It check contacts for contact type ( like Individual, Household, Organization )  .
To open dedupe click on Contact .
It gives condition on which civicrm checks duplicate contact .


If we add the rule just go to edit rule or create new dedupe .


Default Dedupe Rule Settings



Fuzzy Rules for
  • Individual => First Name AND Last Name AND Email
  • Organization => Organization Name OR Email
  • Household => Household Name OR Email
Strict Rules for
  • Individual => Email
  • Organization => Organization Name OR Email
  • Household => Household Name OR Email

Comments

Popular posts from this blog

New Services to the world

Different government services & Online Services GST Registration Company Registration ITR PAN Card Aadhar Card E-way Bill Registration Food License Accounting Service Website designing Website development Website Hosting Website Domain Website Testing (Manual) Website SCO Optimization Lead Generation Add Creation and many more...

Create Hooks in Civicrm in Joomla 1.5

  Create Hooks in Civicrm in Joomla 1.5 Create folder in any directory like /Joomla/media/civicrm_hook . Create file civicrmHooks.php in this directory. Go to Administer CiviCRM > Global Settings > Directories Set the path for custom php here. Use the civicrm hooks with Joomla_civicrm_hookName format. Ex. function Joomla_civicrm_buildForm( ){ // Write your code here. }