running total

  • Thread starter Thread starter MattB
  • Start date Start date
M

MattB

I have a control button that I want to add to one cell the number in another
cell so that I can keep a running total.

I am using Range("j24") = Range("j24") + ???
J24 is where I want the number from k19 to add itself in.

Thanks in advance.
 
One way:

Range("J24").Value = Range("J24").Value + Range("K19").Value
 

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