Using data in a cell to create a PDF in VBA

Frankietheflyer

New Member
Joined
Nov 17, 2017
Messages
30
Hi Folks
I want to call various sheets and ranges for printing to PDF depending on certain factors. I've managed to build a code that places the relevant Sheet and Range information into a cell (cell is at "Sheets "Race Meeting Information").Range("DZ1")") and refer to the cell as "DZ1Range". (Set dz1Range = Sheets("Race Meeting Information").Range("DZ1"))

I now want to place whatever is in cell DZ1 into the code to produce the PDF so avoiding having many repeat codes for each different sheet & Range.

I have proved DZ1 holds the correct info by putting a "MsgBox DZ1Range" in the code which shows the correct sheet and range required.

I've tried many machinations of the following code

ThisWorkbook.DZ1Range.Value.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=myFile, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=True

But none are successful.

How can I get the code for producing a PDF to use the address at DZ1Range ??

Thanks in Advance!
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,215,771
Messages
6,126,797
Members
449,337
Latest member
BBV123

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