VBA code for embedding .pdf

Vep14ind

New Member
Joined
Mar 3, 2018
Messages
4
I have a fuel receipt form that must be filled out every day. Then we have to print the document and scan the doc and receipt together to email to HQ. what code is available to have a button or a before right click can I use to open a browse window and select the pdf to be embedded onto the excel sheet in a certain spot?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
How about this...

Code:
Sub InsertPDF()
Dim ws As Worksheet: Set ws = ActiveSheet


ws.Range("A1").Select 'Change to cell you want pdf to be inserted into
ws.OLEObjects.Add ClassType:="AcroExch.Document.11", Link:=False, _
        DisplayAsIcon:=False
End Sub
 
Upvote 0
I copy and pasted that code into a vba and i returned Error 1004 runtime error cannot insert object
 
Upvote 0
You probably have a different version of excel or adobe. Use the macro recorder and go to insert and select object and insert a pdf.
 
Upvote 0

Forum statistics

Threads
1,216,551
Messages
6,131,310
Members
449,642
Latest member
jobon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top