VBA Adding image to PDF file

dknipe

New Member
Joined
Jan 18, 2018
Messages
13
So I can create pdf from worksheet fine, but it does not show my logo image. What do I do to add to

ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
FileName:=pdf_expenseName, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=True
ActiveWorkbook.SaveAs FileName
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
FileName:=pdf_expenseName, _
Quality:=xlQualityMinimum, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=True
ActiveWorkbook.SaveAs FileName

This will save your logo
 
Upvote 0
This is not working for me.

Not sure if cos am using Mac version, but neither images or form control tick boxes are showing up in PDF file.

I have selected them to print in properties, and if I manually print as PDF they are showing.
 
Upvote 0
Have you tried to record the macro?

I know now it sounds obvious but I was also working on MacBook and my code saved with the image. I didn’t even check the properties.
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,344
Members
448,570
Latest member
rik81h

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