Written by Allen Wyatt (last updated February 3, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
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:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13515) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
If you don't need to print an entire workbook, it can be confusing to figure out how to print just certain pages. This ...
Discover MoreWhen you print a worksheet, Excel normally prints all the pages or a consecutive series of pages that you specify. If you ...
Discover MoreIf you have a workbook containing many worksheets, you might want to print only those worksheets that have some sort of ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments