VBA to get Cummulative Totals using cell reference

JSAUS

New Member
Joined
Jun 11, 2020
Messages
14
Office Version
  1. 2016
Platform
  1. Windows
Hello!

I have a summary sheet where I need to have a cumulative total running by weeks.
The VBA I have to extract the weekly data from it's weekly sheet is below, which is working.
However, I need a way to add the prior week's information to the new week. As a cell reference (because someone might change the information for the previous weeks).

Worksheets("Summary").Activate
Dim LastRow As Long

LastRow = Range("A" & Rows.Count).End(xlUp).Row
Cells(LastRow + 1, 1).Value = Worksheets(2).Name
Cells(LastRow + 1, 2).Formula = "=(" & Worksheets(2).Name & "!C18)"

From the below, RS Wall in Week_2 should actually be 8,690.

Cummulative.png
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.

Forum statistics

Threads
1,214,845
Messages
6,121,902
Members
449,053
Latest member
Guy Boot

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