Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 155
Default Summing to cells using VBA

Hello

Question: How can i sum B63 + B64, placing the total in B66, using VBA?
The sheet name is 'Monthly Summary'
--
Carlee
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 857
Default Summing to cells using VBA

One way is like this

With Worksheets("Monthly Summary")
.Range("B66").Value = .Range("B63").Value + .Range("B64").Value
End With

--
Hope that helps.

Vergel Adriano


"Carlee" wrote:

Hello

Question: How can i sum B63 + B64, placing the total in B66, using VBA?
The sheet name is 'Monthly Summary'
--
Carlee

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Summing 2 columns cells into a 3rd colums cells Wayne Cadigan Excel Discussion (Misc queries) 1 May 13th 10 08:34 PM
not summing all the cells Alina Roumania Excel Discussion (Misc queries) 2 April 13th 10 09:41 AM
Summing of Two cells does not sum!! Joe D Excel Discussion (Misc queries) 2 July 17th 05 10:53 PM
summing cells CG Rosén Excel Programming 3 December 1st 04 05:49 PM
Finding cells and summing variable cells Chris M.[_3_] Excel Programming 3 August 21st 03 09:13 PM


All times are GMT +1. The time now is 10:15 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"