DavidGahan
New Member
- Joined
- Jan 2, 2019
- Messages
- 1
Hey all,
quick question, if Im having a macro for pasting data from certain sheet (that comes on daily basis) to general sheet and adding multiple data every day to it - I have a formula which is working just fine.
Nevertheless if in that range are data that are already existing, is there a way for the macro to skip these rows? (the ones that entirely match)
my simple macro:
Sub VBA_pasting_at_the_end()
With Sheets("Report")
Range("A2:L1000").Copy
Sheets("Report").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
End With
End Sub
quick question, if Im having a macro for pasting data from certain sheet (that comes on daily basis) to general sheet and adding multiple data every day to it - I have a formula which is working just fine.
Nevertheless if in that range are data that are already existing, is there a way for the macro to skip these rows? (the ones that entirely match)
my simple macro:
Sub VBA_pasting_at_the_end()
With Sheets("Report")
Range("A2:L1000").Copy
Sheets("Report").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
End With
End Sub