0

I'm trying to compare 2 columns of similar data and would appriciate some help. i need to know how to do the following. I what to know how to compare the values in column A with column B, then if the values in column A are greater than B. then copy the value of A over the value of B.

If someone could let me know the easiest way to do this it would be appriciated

2
  • 1
    Only VBA macro can solve this task inplace. But you may create a formula in column С: C1 =MAX(A1,B1), drag it down (it will be filled automatically), copy column C, paste special to column B with "values only", then clear or remove column C.
    – Akina
    Commented Aug 17, 2021 at 6:48
  • Thanks mate i'll give that a go and get back to you cheer
    – Darren
    Commented Aug 18, 2021 at 19:35

0

You must log in to answer this question.