THanks!
Minhaj Arifin
3 answers
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