Skip to main content
In the scenario that we have 2 similiar looking contacts but the Matching or Duplicate rule has not triggered, do we have the ability to merge these accounts? 

 

THanks! 

 

Minhaj Arifin 

 

 
3 answers
  1. Sep 18, 2020, 8:03 PM
    You could use a quick apex annoynous code to merge them both.

     

    Account acc1 = [SELECT ID FROM Account WHERE ID = 'ID here'];

     

    Account acc2 = [SELECT ID FROM Account WHERE ID = 'ID here'];

     

    merge acc1 acc2;

     

    acc1 being the master record
0/9000