Use a pdf as chart background

rtr

New Member
Joined
Apr 15, 2010
Messages
1
I would like a user to select a pdf file (a single page pdf ) and have that pdf file displayed in a chart background. I achieve that with image files, but not pdf files, using the following VBA code:

Sub AddImageToNewChartBackground()
sFileName = Application.GetOpenFilename
With Activesheet.ChartObjects.Add
.Chart.ChartArea.Fill.UserPicture PictureFile:=sFileName
End With
End Sum

If I try the above subroutine with a pdf I get an error. I thus have two questions:

1. Is there a way to use a pdf as a chart background?

2. Is there a way , using VBA, to convert a given pdf file to an image format (perhaps calling some other program)?

Note: the pdf/image MUST be in the chart background rather than a floating object seen through a transparent plot area. I use mouse click events and if there are floating objects then my mouse clicks select the objects and the coordinates of my click are not captured. Thus "Insert...Object...Create from file" to get a pdf on a worksheet then paste the object into the chart does not work. Besides, the resolution of the embedded pdf object is terrible; does anyone know how to fix that problem?


Thanks
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

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