View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
tamirh tamirh is offline
external usenet poster
 
Posts: 4
Default Comparing a range of values

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?