Excel Macro code to Print Narrow Margin

How to Print Narrow Margin 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 Print Narrow Margin
Sub printNarrowMargin()
With ActiveSheet.PageSetup
.LeftMargin = Application
.InchesToPoints (0.25)
.RightMargin = Application.InchesToPoints(0.25)
.TopMargin = Application.InchesToPoints(0.75)
.BottomMargin = Application.InchesToPoints(0.75)
.HeaderMargin = Application.InchesToPoints(0.3)
.FooterMargin = Application.InchesToPoints(0.3)
End With
ActiveWindow.SelectedSheets.PrintOut _
Copies:=1, _
Collate:=True, _
IgnorePrintAreas:=False
End Sub

Use this VBA code to take a print with a narrow margin. When you run this macro it will automatically change margins to narrow.

RECENTLY UPLOADED EXCEL TEMPLATES

class attendance monthly

Monthly Class Attendance Sheet

Most schools and businesses track attendance using spreadsheets. Monthly class attendance sheet are helpful for  blank attendance forms that you …

Download Now
birthday-calendar

Birthday Calendar

A birthday calendar is a great way to remember and display birthdays for a school class, your friends, relatives, organization or …

Download Now
credit repair calculator

Credit Repair Calculator

The Credit Repair Edition is popular debt reduction calculator is design to help you improve your credit score by using …

Download Now
Credit card payoff calculator

Credit card payoff calculator

Download free Credit Card Payoff calculator for Microsoft Excel that will calculate the payment required to pay off your credit …

Download Now
CRM-template

Customer Relationship Management

Customer Relationship Management (CRM) systems and CRM software can help you increase sales by streamlining the communications with your potential …

Download Now
quote-template

Quote template

A Price Quote, Sales Quote, or Service Quote can legally bind agreement between a vendor and a customer to deliver products or services …

Download Now