I have two lists of company names, how can I merge them in the third list without duplicates. For example my list 1 is in row C36-C45, list 2 is in row C51-C60 and I would like to get the result of merging two list in row C66-C75. My lists are dynamic I get from the database, so sometimes, not all the ranges have company names.
I tried the below formula in cell C66 and dragged down, I get the values but starting from C67; in C66 I get an empty cell. Don't know what is the reason, any help?
=IFERROR(LOOKUP(2;1/(COUNTIF($C$65:C65; $C$36:$C$45)=0); $C$36:$C$45); LOOKUP(2;1/(COUNTIF($C$65:C65; $C$51:$C$60)=0); $C$51:$C$60))
UPDATE: I found the problem I have a list title in C65 if I delete that text, I don't get the empty cell in C66 but I would like to keep the title how can I update the function to be able to do that.