how do i select a column when using "exact" formula?

J

JLEXCEL

It comes up with #NUM! When I use "H:H" p.s. this is in an array, and i did
do the Ctrl+Shift+Enter.

The formula is =OR(EXACT(C2,H:H))
 
J

JE McGimpsey

Prior to XL07, you can't use entire columns in array formulae. Try:

=OR(EXACT(C2,H1:H65535))
 
Top