Hi Cutthroat, if you thought the last formula was bad look at this one.
=IF(OR(ISBLANK(A1),ISBLANK(B1),ISBLANK(C1))=TRUE,0,IF(OR(A1=B1,A1=C1,B1=C1),1,0))
The above says just what you ordered. If any of the three cells are blank then give back a zero. If none of them are blank then do the formula given before.
My concern is with the ISBLANK function. I'm reading it may be new to Excel 2010 so I'm still working on a 2003 solution. Perhaps an upgrade is in order? I'll keep working... I have to find a list of 2003 functions.
I know that 2003 had the Len() function so try this
=IF(OR(LEN(A1)=0,LEN(B1)=0,LEN(C1)=0)=TRUE,0,IF(OR(A1=B1,A1=C1,B1=C1),1,0))
Bookmarks