ribbard
you may already have the answer, but here's one way. it's a bit ugly but should work.
**for comparing conditions between worksheets**
assuming conditions to be compared are in column A of worksheets named Sheet1 and Sheet2, enter in Sheet1:
=IF(EXACT(Sheet2!A1,A1),1)
and copy down as far as needed. with this formula you can do a SUM at the end if you want to tell you how many matches you have.
**for comparing conditions within a worksheet** assuming conditions to be compared are in columns A and B:
=IF(EXACT(A1,B1),1)
as with the other one you can do a SUM at the end.
hope this helps
ribbard
i should think before i write!
what i've suggested below will work for arrays as well(which is what i think you were asking for in the first place - i'm a bit slow today) but of course you'll have to array enter (ctrl+shift+enter) the formula. for columns you'll have to compare row by row, unless you define names for the columns (insert menu, name,define) then you can use =EXACT(range1,range2) and array enter.
Anno, many thanks for your help on this (NT)