How to make one column update another column in Exell

  • Thread starter Thread starter Canron newbie
  • Start date Start date
C

Canron newbie

I want a macro or something to make a value in C column place another value
in K column ie: C= 3 and then K would = 5.5 on the same row
 
That could be pretty easy depending on exactly what you want.
Let's say that column K is there to add a fixed number to whatever is in
Column C.
Cell K1 would have this formula in it:
=C1+2.5 or =SUM(C1,2.5)
As soon as you entered a number in cell C1, Cell K1 would add 2.5 to the
number and display the result, in this case 5.5.
You could then copy K1 as far down as you would like.
 
Back
Top