Remove Print Lines in Excel

Introduction to Removing Print Lines in Excel

When working with Excel, you may have encountered print lines or page breaks that are visible on your worksheet. These lines are automatically inserted by Excel to indicate where the page will break when you print the document. However, they can be distracting and make your worksheet look cluttered. In this article, we will explore the different methods to remove print lines in Excel and provide you with step-by-step instructions on how to do it.

Understanding Print Lines in Excel

Print lines in Excel are automatic page breaks that are inserted based on the page setup and print area settings. They are indicated by a dotted line on the worksheet. There are two types of print lines in Excel: automatic page breaks and manual page breaks. Automatic page breaks are inserted by Excel based on the page setup settings, while manual page breaks are inserted by the user.

Method 1: Remove Print Lines by Changing Page Setup

To remove print lines in Excel, you can change the page setup settings. Here’s how:
  • Go to the Page Layout tab in the ribbon.
  • Click on the Page Setup button in the Page Setup group.
  • In the Page Setup dialog box, click on the Sheet tab.
  • Under the Print section, uncheck the box next to Gridlines.
  • Click OK to apply the changes.
This will remove the print lines from your worksheet.

Method 2: Remove Print Lines by Changing Print Area

Another way to remove print lines in Excel is to change the print area settings. Here’s how:
  • Go to the Page Layout tab in the ribbon.
  • Click on the Print Area button in the Page Setup group.
  • Select the range of cells that you want to print.
  • Right-click on the selection and choose Set Print Area.
  • Go back to the Page Layout tab and click on the Page Setup button.
  • In the Page Setup dialog box, click on the Sheet tab.
  • Under the Print section, uncheck the box next to Gridlines.
  • Click OK to apply the changes.
This will remove the print lines from your worksheet.

Method 3: Remove Print Lines by Using VBA

You can also use VBA to remove print lines in Excel. Here’s an example code:
Code
Sub RemovePrintLines()
ActiveSheet.DisplayPageBreaks = False
End Sub
To use this code, follow these steps:
  • Press Alt + F11 to open the VBA Editor.
  • In the VBA Editor, click on Insert > Module to insert a new module.
  • Paste the code into the module.
  • Click on Run > Run Sub/UserForm to run the code.
This will remove the print lines from your worksheet.

💡 Note: This code will remove all print lines from the active sheet. If you want to remove print lines from a specific range of cells, you need to modify the code accordingly.

Conclusion and Final Thoughts

In this article, we have explored the different methods to remove print lines in Excel. We have provided step-by-step instructions on how to change the page setup and print area settings, as well as how to use VBA to remove print lines. By following these methods, you can easily remove print lines from your worksheet and make it look cleaner and more professional. Remember to always save your changes before printing your worksheet.

What are print lines in Excel?

+

Print lines in Excel are automatic page breaks that are inserted based on the page setup and print area settings.

How do I remove print lines in Excel?

+

You can remove print lines in Excel by changing the page setup settings, changing the print area settings, or using VBA.

Can I remove print lines from a specific range of cells?

+

Yes, you can remove print lines from a specific range of cells by modifying the VBA code or by changing the print area settings.