Jyggalag

Active Member
Joined
Mar 8, 2021
Messages
422
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi all,

I currently have a macro that converts my excel sheet into a PDF and saves it in a designated folder. However, I only want it to save the first sheet as a PDF, and ignore my other sheets, which it will not do at the moment.

My code looks as follows:

VBA Code:
Option Explicit

Sub SaveFileWithMacro()

Dim Path As String
Dim fn As String
Path = "S:\PATH\Tracking\PDF files\"
fn = Range("A63")
ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF, _
    Filename:=Path & fn & ".pdf"

End Sub

A63 is the cell in which I type in the name of the PDF file to be saved.

Can anybody help me fix my macro so it only saves the first sheet in the below picture (the one called "Sheet3")?

Thank you! :)

1655882378303.png
 
In that case you should also be able to swap these lines (though the red one should still work if the sheet is definitely the first sheet in the workbook).

Rich (BB code):
Sheets(1).ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & fn & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & fn & ".pdf"
This is the debug error btw:

1655887928175.png
 
Upvote 0

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
In that case you should also be able to swap these lines (though the red one should still work if the sheet is definitely the first sheet in the workbook).

Rich (BB code):
Sheets(1).ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & fn & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & fn & ".pdf"
Dear Peter,

Apologies for my sillyness. It turns out that it was unable to save the file because I had it in open in PDF in my background.

Embarrassing mistake, but your formula works as intended now!

Very much appreciated and thank you SO much for your help! :)

If I may ask one last question, if I were to move this code to another sheet (so the macro button is not in the sheet for the pdf that I want printed) and let's say this other sheet is called Sheet2, how should I change the macro so it still works as intended and publishes Sheet3 (as before) as a PDF and saves it in my folder?

Thank you very much! :)
 
Upvote 0
n, if I were to move this code to another sheet (so the macro button is not in the sheet for the pdf that I want printed) and let's say this other sheet is called Sheet2, how should I change the macro so it still works as intended and publishes Sheet3 (as before) as a PDF and saves it in my folder?
What is most important? ..
- That the sheet to be converted to pdf is called 'Sheet3', or
- That the sheet to be converted to pdf is the left hand sheet in the workbook?
 
Upvote 0
What is most important? ..
- That the sheet to be converted to pdf is called 'Sheet3', or
- That the sheet to be converted to pdf is the left hand sheet in the workbook?
Both would be fine!

Sheet3 seems more flexible just in case of future events, but if it's too difficult, I definitely do not mind the other solution :)
 
Upvote 0
Sheet3 seems more flexible
Try this then

VBA Code:
Sub SaveFileWithMacro_v2()
  Dim Path As String
  Dim fn As String
  
  Path = "S:\PATH\Tracking\PDF files\"
  With Sheets("Sheet3")
    fn = .Range("A63")
    .ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & fn & ".pdf"
  End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,628
Messages
6,120,618
Members
448,973
Latest member
ChristineC

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