Forum Discussion
Cygnata
May 08, 2025Copper Contributor
No Match formula that ignores when one cell is blank and other has data?
Just what the title says. I have a spreadsheet with duplicated columns (poor management by the person before me) but the data sometimes differs. I have a worksheet where I can paste both columns to c...
- May 09, 2025
=IF(AND(C2:D2<>"", C2<>D2), "No match", "")
HansVogelaar
May 09, 2025MVP
=IF(AND(C2:D2<>"", C2<>D2), "No match", "")
Cygnata
May 10, 2025Copper Contributor
Thank you!