E
Eva
I have two sheets:Master with all data and sheet2 with some columns that are
the same as master. I set a formula simply links some data in Sheet2.
I need to copy this formula in sheet2 down up to last row in master sheet.
I started working on the macro, but I am stuck. Can you help?
Sub Macro7()
Sheets("Master").Select
Dim LastRow As Long
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
'MsgBox OstatniWiersz
Sheets("Sheet2").Select
Range("a2:s2").Select
Selection.Copy
....?
the same as master. I set a formula simply links some data in Sheet2.
I need to copy this formula in sheet2 down up to last row in master sheet.
I started working on the macro, but I am stuck. Can you help?
Sub Macro7()
Sheets("Master").Select
Dim LastRow As Long
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
'MsgBox OstatniWiersz
Sheets("Sheet2").Select
Range("a2:s2").Select
Selection.Copy
....?