I have a UserForm that is set to capture employee information and a signature of that employee, then when they hit CommandButton1 all the information typed goes to specific cells on Sheet1. As of now all of the typed information in the UserForm gets sent to their respective cells once the CommandButton1 is pushed but the InkPicture box (that has already been signed) does not get sent to the sheet. I need the drawing made in the UserForm InkPicture box to go to the last row available on column 4. This is what I have created for this but results in an error:

Private Sub CommandButton3_Click()

With UserForm1.InkPicture1
.InkEnabled = False
Set .Ink = Me.InkPicture1.Ink
.InkEnabled = True
End With

UserForm1.InkPicture1.Picture = InkPicture1.Picture
Dim LastRow As Object

Set LastRow = Sheet1.Range("a65536").End(xlUp)

LastRow.Offset(1, 2).Value = InkPicture1.Ink

End Sub