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

Set Multisite in drupal

For Linux 9.10 Please Follow the steps : 1) Extract the drupal in public html folder or any other folder.(say exampleDrupal). 2) Add below lines to exampleDrupal/sites/sites.php     $sites['site1.test'] = 'site1.test';     $sites['site2.test'] = 'site2.test'; 3)  Create two folders in exampleDrupal/sites/ folder.       as site1.test & site2.test.      OR      Using terminal run following commands :      i)  cd example.com/sites      ii) mkdir site1.test/ site2.test/ 4) Copy the default.settings.php file from  exampleDrupal/sites/default to site1.test &  site2.test folder.     OR      Using terminal run following commands :       i) cp default/default.settings.php site1.test/settings.php       ii) cp default/default.settings.php si...