Hello, I'm trying to create a single column that populates cells based on a unique identifier that can be matched to either column A or column B in a different sheet, but I can't get it to work.
When I create my formula for just column A or column B, they work:
=IF(MATCH(F2,'Hot Alert IDs'!$A:$A,0),"Dissatisfied",) works independently
=IF(MATCH(F2,'Hot Alert IDs'!$B:$B,0),"No Contact",) also works independently
But when I try to combine them, I can't get it to work; the column only populates for the first IF-MATCH function. This is what I have:
=IF(MATCH(F2,'Hot Alert IDs'!$A:$A,0),"Dissatisfied",IF(MATCH(F2,'Hot Alert IDs'!$B:$B,0),"No Contact",))
What am I doing wrong? Any help would be greatly appreciated!!!
When I create my formula for just column A or column B, they work:
=IF(MATCH(F2,'Hot Alert IDs'!$A:$A,0),"Dissatisfied",) works independently
=IF(MATCH(F2,'Hot Alert IDs'!$B:$B,0),"No Contact",) also works independently
But when I try to combine them, I can't get it to work; the column only populates for the first IF-MATCH function. This is what I have:
=IF(MATCH(F2,'Hot Alert IDs'!$A:$A,0),"Dissatisfied",IF(MATCH(F2,'Hot Alert IDs'!$B:$B,0),"No Contact",))
What am I doing wrong? Any help would be greatly appreciated!!!