comparing cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to figure out how I can compare the information in two different
cells. The cells contain both letters and numbers. If a cell in column "A" is
equal to a cell in column "B" then I want the information in column "C" that
is on the same row as the as the information in coumn "B" to be placed in
column "D" that is in the same row as the information that is being compared
in column "A". Is this possible? So if A1=column B then the cell next to B
(C)would be put in cell "D" in the same row as A.
 
You may use this formula in column D:
=IF(A2=B2,C2,"")
It will show blank if A and B are not equal, you may change that default
value.

Hope this helps,
Miguel.
 

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

Back
Top