Cell reference, resize, offset, copy and paste

myespooir

Board Regular
Joined
Jul 24, 2015
Messages
52
Hi, I am trying to make a Macro to add trackers after clicking a button. My excel is set up this way: - The 1stColumn of Row 9 is a formula that shows today's date - Row 10 has 6 Column with 6 criteria - From Row 11 to Row 2010, they are formulas for the 6 criteria on Row 10 I am trying to make the Macro do 1) Find the last cell with data on Row 9, use the resize function to Copy whatever i have from the 1st Column of Row 9 to the 5th Column of Row 2010, and paste it to the 7th Column of Row 9 till the 12th Column of Row 2010 2) Copy whatever i have from the 1st Column of Row 9 to the 5th Column of Row 2010, and paste it at the same place with values only The goal is that this Macro can be reused everytime users hit the button. However, error messages keep popping up. Could you help me with this? Please find my macro below. Sub AddTrackers() Dim lastColumn As Long Dim r As Integer Dim a As Integer Dim b As Integer Dim c As Integer r = 9 a = 6 b = 2002 c = 5 lastColumn = ActiveSheet.Cells(r, Columns.Count).End(xlToLeft).Column Cells("r, lastColumn").Resize("r+b,lastColumn+a").Copy .Paste Destination:=Cells("r, lastColumn").Offset(, "lastColumn+c") Cells("r, lastColumn").PasteSpecial xlPasteValues Cells("r, lastColumn").Select End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Sorry, for some reason, my vba format is off.
Sub AddTrackers()

Dim lastColumn As Long
Dim r As Integer
Dim a As Integer
Dim b As Integer
Dim c As Integer


r = 9
a = 6
b = 2002
c = 5


lastColumn = ActiveSheet.Cells(r, Columns.Count).End(xlToLeft).Column


Cells("r, lastColumn").Resize("r+b,lastColumn+a").Copy

.Paste Destination:=Cells("r, lastColumn").Offset(, "lastColumn+c")

Cells("r, lastColumn").PasteSpecial xlPasteValues

Cells("r, lastColumn").Select


End Sub
 
Upvote 0

Forum statistics

Threads
1,215,318
Messages
6,124,235
Members
449,149
Latest member
mwdbActuary

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