View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Kevin B Kevin B is offline
external usenet poster
 
Posts: 1,316
Default compare two columns

Assuming data in Columns A & B with the formula in Column C:

=IF(A1<B1,"No Match","")

or if you prefer a True/False

=IF(A1<B1,False,True)

Adjust column and rows as needed and copy down as far as necessary.

--
Kevin Backmann


"Theresa" wrote:

I need to compare two columns of numbers and return what doesn't match. What
formula would I use?