Copy & paste on VBA excel

Carolina Visnadi

I couldnt find any code already posted to actually copy the entire row (like a form)

enter image description here

then pastes at the bottom in the first empty row of the database.

can anyone please help? Thanks

form A6:AY

Dude_Scott

Untested from mobile:

Sub CopyPaster()

With ActiveSheet
     .Range("A6").EntireRow.Copy
     .Cells(Application.WorksheetFunction.CountA(.Range("A:A")+3,1).PasteSpecial xlPasteValues 'Plus 3 to account for the two blank cells in column A
End With

End sub 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related