Karthik Thandapani
Member
Hi,
Can anyone please help me with a VBA code snippet to paste the selected data. Presently I've the below & trying to find an efficient way to copy&paste data without any bug.
Sub endxldownData()
Worksheets("Home").Activate
Range("P11").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Sheets("Home").Range("B11").PasteSpecial (xlPasteValues)
Application.CutCopyMode = False
End Sub
Can anyone please help me with a VBA code snippet to paste the selected data. Presently I've the below & trying to find an efficient way to copy&paste data without any bug.
Sub endxldownData()
Worksheets("Home").Activate
Range("P11").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Sheets("Home").Range("B11").PasteSpecial (xlPasteValues)
Application.CutCopyMode = False
End Sub