0
I need to make a code that when I click on a button (in the "MARC" spreadsheet), it copies the information in the row (which would be a variable) and columns A through G, and leads to another spreadsheet with the name "PROGR. DIARIA", look for the last line and paste in the first empty line after the last line with data, I’ll leave what I tried to do here
Sub Linha3_MARC()
'
' Linha3_MARC Macro
'
'
Range("A3:G3").Select
Selection.Copy
Sheets("PROGR. DIARIA").Select
Range("A2").Select
Selection.End(xlDown).Select
ActiveSheet.Paste
End Sub
But I can’t get them to skip one more line after the selection.end(xldown).select
Good afternoon, sorry for the kk delay but look, I took this code and I changed some things and everything went well, thanks for the help
– Lucas Modesto de Souza