how to compare column?

  • Thread starter Thread starter Able Cox
  • Start date Start date
A

Able Cox

How do I compare colume

column A column B column C
22 33 B
22 14
12 3
27 45 B
55 40

How to compare column A with column B, then if B is greater than A, indicate
B in column C?

Thank you.
 
Thanks Pete.

Is there anywhere to paste the entire column C ? not just one specific
cells, but 200 rows.

Thank you.

Put this in C1:

=IF(B1>A1,"B","")

and copy down as required.

Hope this helps.

Pete
 
A number of ways of copying:

Copy C1, select C2:C20, and Paste.
or
Select the fill handle in the bottom right hand corner of C1 (to get a black
square there), and drag it down C2:C200
or
Double-click on the fill handle of C1 (see above), and it should fill down
as far as you have data in column B
 
Thank you.

David Biddulph said:
A number of ways of copying:

Copy C1, select C2:C20, and Paste.
or
Select the fill handle in the bottom right hand corner of C1 (to get a
black square there), and drag it down C2:C200
or
Double-click on the fill handle of C1 (see above), and it should fill down
as far as you have data in column B
 
Back
Top