dpaton05
Well-known Member
- Joined
- Aug 14, 2018
- Messages
- 2,362
- Office Version
- 365
- 2016
- Platform
- Windows
Dim sht As Worksheet
Set sht = ActiveSheet
Sheets("sheet2").Shapes("ImgG").Copy
Sheets("NPSS_quote_sheet").Paste _
Destination:=Worksheets("NPSS_quote_sheet").Range("sht.Cells.SpecialCells(xlCellTypeLastCell).Row"+4)
I have a worksheet, NPSS_quote_sheet that I need to paste a signature I have saved on sheet2, 4 lines below the last cell. Could someone help me with this code please as I tried putting a method for finding the last cell into the range but as I don't know how to code, I can't debug it.
Thanks,
Dave
Set sht = ActiveSheet
Sheets("sheet2").Shapes("ImgG").Copy
Sheets("NPSS_quote_sheet").Paste _
Destination:=Worksheets("NPSS_quote_sheet").Range("sht.Cells.SpecialCells(xlCellTypeLastCell).Row"+4)
I have a worksheet, NPSS_quote_sheet that I need to paste a signature I have saved on sheet2, 4 lines below the last cell. Could someone help me with this code please as I tried putting a method for finding the last cell into the range but as I don't know how to code, I can't debug it.
Thanks,
Dave