Sum cell values in a column

Gonzalo De La Torre

New Member
Joined
May 21, 2010
Messages
24
The idea is the following:

Dim VariableRow As String

ActiveCell.FormulaR1C1 = "=SUM(RC[-2]:R[VariableRow]C[-2])"

I have values in column A but in column B i have nother value that it is going to tell the number of rows the sum is going to cover in column A Can this be done in VBA or just by using a simple formula Example:

--------------------------------Column C
Row Number|Column A|Column B|Sum Result
----1------|----1----|---3----|----8-----------Sum = Range(A1:A3)
----2------|----2----|---0----|
----3------|----5----|---0
----4------|----2----|---4----|----9-----------Sum = Range(A4:A7)
----5------|----2----|---0----|
----6------|----2----|---0----|
----7------|----3----|---0----|

Can anyone help me out with this issue?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
In C1 and below:

=IF(B1,SUM(OFFSET(A1,,,B1,)),"")
 
Upvote 0

Forum statistics

Threads
1,214,667
Messages
6,120,820
Members
448,990
Latest member
rohitsomani

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top