View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
MattB MattB is offline
external usenet poster
 
Posts: 10
Default running total

Got it thank you both for the quick response. I used this one.

"Wigi" wrote:

Range("j24") = Range("j24") + Range("k19")

This is a guess...

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"MattB" wrote:

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.