L
Lana
Does anyone know if you can exclude blank cells when using the exact function
to compare two cells to see if they are duplicates?
to compare two cells to see if they are duplicates?
Lana said:Does anyone know if you can exclude blank cells when using the exact function
to compare two cells to see if they are duplicates?
....Bernard Liengme said:Ho about:
=IF(AND(ISBLANK(A1),ISBLANK(B1)),NA(),EXACT(A1,B1))
Rick Rothstein said:Or possibly even this way...
=IF(A1&B1="",NA(),EXACT(A1,B1))