Comparing a range of values

T

tamirh

I want to compare two ranges of cells with each other. Some need a string
comparasion, and some need a floating point delta comparasion. So I was
trying to do something like this:

=AND( (A1:A10)=(B1:B10) )
=DELTA( (C1:C10), (D1:D10) )

However I get back #VALUE when I try to do a range like that (it works if I
do just one cell). How would I compare all the values at the same time?
 
T

T. Valko

Assuming you want to compare A1 to B1, A2 to B2, A3 to B3, etc...

Array entered** :

=AND(A1:A10=B1:B10)
=AND(C1:C10=D1:D10)

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)

DELTA won't work on arrays.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top