Printing Gridlines by Default

Written by Allen Wyatt (last updated February 3, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


When Kenneth prints a worksheet, 99% of the time he prefers printing it with gridlines. However, the gridlines check box (on the Sheet tab of the Page Setup dialog box) is not selected by default. Kenneth wonders if there is a way to change this setting so that it is always selected.

There are actually a couple of different ways you can approach this task. If you want all of your future workbooks or worksheets to have the gridlines turned on by default, start by create a default workbook and worksheet that Excel will rely on when creating these. How you do this has been covered in other ExcelTips, such as this one:

Creating Default Formatting for Workbooks and Worksheets

Note that this approach affects all newly created worksheets or workbooks; it doesn't affect any that were previously created. If you want to affect those, you might want to consider a simple macro to turn on the gridlines. This could be assigned to either a shortcut key or to the Quick Access Toolbar. Here's an example of one that turns on the gridlines:

Sub GridlinesOn()
    ActiveSheet.PageSetup.PrintGridlines = True
End Sub

That's it—a single line. You can, if desired, also get fancier with the macro so that it toggles the gridlines and displays their state. Here's an example:

Sub GridlinesToggle()
    Dim sStatus As String

    sStatus = "OFF"
    With ActiveSheet.PageSetup
        .PrintGridlines = Not .PrintGridlines
        If .PrintGridlines Then sStatus = "ON"
    End With
    Msgbox "The gridlines are now " & sStatus
End Sub

Finally, you could also create a macro that makes sure the gridlines are turned on and then prints the current worksheet. This requires adding a single line to the earlier macro that turned on the gridlines:

Sub PrintGridlines()
    ActiveSheet.PageSetup.PrintGridlines = True
    ActiveSheet.PrintOut
End Sub

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13515) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Displaying the Styles You Want Displayed

Want to customize your styles list so that it only lists the ones you are using? It's easy and can save some time when ...

Discover More

Randomly Resetting Numbering

Have you ever been frustrated by the automatic numbering feature in Word? You are not alone. Fortunately, there are a few ...

Discover More

Modifying What is Started when You Start Windows

Did you know that Windows automatically starts extra programs whenever you boot your system? If you want to see which ...

Discover More

Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!

More ExcelTips (ribbon)

Resetting Page Setup

If you ever open a workbook and find that your carefully crafted worksheets no longer print on the number of pages you ...

Discover More

Using the Keyboard to Control Page Display in Print Preview

Sometimes it is just easier to use the keyboard than it is to use the mouse. If you are a keyboard-oriented person, you ...

Discover More

Specifying a Paper Tray in a Macro

If you are using a macro to create your printed Excel output, you may need a way to specify that paper should come from a ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is six minus 4?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.