Hi
The macro below copies the first round of values, then on running it again it copies over the previously copied values. How do I get it to continuously copy the values & number formats to the next blank cell on column A in sheet 1, instead of copying over already existing data
-Injinia
Sub TransferData()
Dim LastRow As Integer
'Where is the last cell with data?
LastRow = Worksheets("Sheet 1").Range("A65536").End(xlUp).Row
'Transfer data
Sheets("accuracy").Range("B23:L29").Copy
Worksheets("Sheet 1").Cells(LastRow + 1, "A").PasteSpecial xlPasteValuesAndNumberFormats
End Sub
The macro below copies the first round of values, then on running it again it copies over the previously copied values. How do I get it to continuously copy the values & number formats to the next blank cell on column A in sheet 1, instead of copying over already existing data
-Injinia
Sub TransferData()
Dim LastRow As Integer
'Where is the last cell with data?
LastRow = Worksheets("Sheet 1").Range("A65536").End(xlUp).Row
'Transfer data
Sheets("accuracy").Range("B23:L29").Copy
Worksheets("Sheet 1").Cells(LastRow + 1, "A").PasteSpecial xlPasteValuesAndNumberFormats
End Sub