check if 2 cells are equal but only if they contain numbers not i.

P

Philippe l. Balmanno

Try & modify:

=IF(ISNUMBER(A1),IF(ISNUMBER(B1),IF(A1=B1,"Equal",IF(A1<B1,A1&" is less than "&B1,A1&" is greater than "&B1))))
 
Top