dpaton05
Well-known Member
- Joined
- Aug 14, 2018
- Messages
- 2,362
- Office Version
- 365
- 2016
- Platform
- Windows
I have a start up page for my spreadsheet that allows a user and a site to be selected. Depending on the user, I want a signature that is stored on the sheet Users, inserted in the following format onto sheet1. The signatures are stored in sheet 2.
Can someone help me with the vba please?
Code:
Dim shp As Shape
Set shp = Sheets("sheet1").Shapes("textbox4")
Sheets("Sheet2").Shapes("ImgG").Copy
Sheets("sheet1").Paste Destination:=Sheets("sheet1").Cells(1, 1)
Selection.Top = shp.Top + shp.Height + "50"
Can someone help me with the vba please?