Want to exclude worksheets when pdfing excel file and name PDF file after value in Cell

Creedon

New Member
Joined
Nov 9, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi,

Below is the code I'm using to create pdf files for each worksheet in an excel file.

I'm looking to have the pdf files named after a cell value I2 in each tab however it is still working off the worksheet tab name.

Sub pdfmultiplesheets()
Dim saveInFolder As String
Dim ws As Worksheet
saveInFolder = ThisWorkbook.Path
For Each ws In ThisWorkbook.Worksheets
If ws.Name <> "Sheet3" Then
ws.ExportAsFixedFormat xlTypePDF, Filename:=saveInFolder & "\" & Range("I2") & ws.Name & ".pdf"
End If
Next ws
End Sub


Any suggestions?

Thanks,
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Welcome to the Board!

Try changing this line:
VBA Code:
ws.ExportAsFixedFormat xlTypePDF, Filename:=saveInFolder & "\" & Range("I2") & ws.Name & ".pdf"
to this:
VBA Code:
ws.ExportAsFixedFormat xlTypePDF, Filename:=saveInFolder & "\" & ws.Range("I2") & ".pdf"
 
Upvote 0

Forum statistics

Threads
1,216,058
Messages
6,128,539
Members
449,457
Latest member
ncguzzo

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