R
ryguy7272
I am trying to copy a row (could be any row) from a sheet named ‘Master’ and
paste to another sheet, named ‘Summary’, in the same workbook, and
PasteSpecial in Cell A2.
Below is the code that I'm trying to implement:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Dim Currrow As Range
Currrow = Range("A2" & .Row & ":V" & .Row)
Worksheets("Master").Range("A" & Currrow & ":V" & Currrow).Copy
Worksheets("Summary").Range("A2").PasteSpecial
End Sub
It would be the entire row; doesn't matter. The data goes from A:V.
Thanks,
Ryan---
paste to another sheet, named ‘Summary’, in the same workbook, and
PasteSpecial in Cell A2.
Below is the code that I'm trying to implement:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Dim Currrow As Range
Currrow = Range("A2" & .Row & ":V" & .Row)
Worksheets("Master").Range("A" & Currrow & ":V" & Currrow).Copy
Worksheets("Summary").Range("A2").PasteSpecial
End Sub
It would be the entire row; doesn't matter. The data goes from A:V.
Thanks,
Ryan---