Excel Macro code to Save Selected Range as a PDF

How to Save Selected Range as a PDF in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Save Selected Range as a PDF
Sub HideSubtotals()
Dim pt As PivotTable
Dim pf As PivotField
On Error Resume Next
Set pt = ActiveSheet.PivotTables(ActiveCell.PivotTable.name)
If pt Is Nothing Then
MsgBox "You must place your cursor inside of a PivotTable."
Exit Sub
End If
For Each pf In pt.PivotFields
pf.Subtotals(1) = True
pf.Subtotals(1) = False
Next pf
End Sub

VBA code for Save Selected Range as a PDF: If you want to hide all the subtotals, just run this code. First of all, make sure to select a cell from your pivot table and then run this macro.

RECENTLY UPLOADED EXCEL TEMPLATES

continuous-monthly-calendar

Continuous Monthly Calendar

This new continuous monthly calendar template for Excel will let you create and print a calendar without breaks between months, all …

Download Now
monthly-calendar- with-holidays

Monthly Calendar with Holidays

This new monthly calendar with holidays template for Excel will let you create and print a calendar without breaks between …

Download Now
hoshin-kanri-x-matrix

Hoshin Kanri Matrix

The Hoshin Kanri X matrix  is a single-page document that includes goals, strategies, strategic projects, and owners. Hoshin Kanri Matrix …

Download Now
agile-kanban-board

Agile Kanban Board

After learning about Agile development, Kanban, and Scrum, we have decided to try implementing a very simple system to help our small team …

Download Now
critical-path-method

Critical Path Method

The Critical Path Method (CPM) is a way for project managers to determine which tasks are critical and which tasks …

Download Now
construction-schedule

Construction Schedule

This construction schedule template is design to provide a very simple way to create a professional-looking road-map for multi-year projects. …

Download Now