Is this possible? Have a few templates I'm looking to add dynamic signatures to from a dropdown and save to .PDF instead of printing, manually signing and scanning in. I have signature images in PNG format that I'm looking to overlay over the signature line.
I've looked into the INSERT>SIGNATURE functionality built into Excel but it lacks the flexibility I require.
I already saw that I can insert and place/format pictures with the following code from a local directory (as PicPath):
I've looked into the INSERT>SIGNATURE functionality built into Excel but it lacks the flexibility I require.
I already saw that I can insert and place/format pictures with the following code from a local directory (as PicPath):
VBA Code:
With xlApp.ActiveSheet.Pictures.Insert(PicPath)
With .ShapeRange
.LockAspectRatio = msoTrue
.Width = 75
.Height = 100
End With
.Left = xlApp.ActiveSheet.Cells(i, 20).Left
.Top = xlApp.ActiveSheet.Cells(i, 20).Top
.Placement = 1
.PrintObject = True
End With