Somehow or other I have managed to switch on the print margin lines in Excel 2010. I cannot seem to turn them off. I went to Page Layout->Page Setup->Print Area->Clear Print Area but the lines remain on my screen. Any ideas to get rid of them?
8 Answers
I have Excel 2007 so I'm giving the instructions to hide page break lines for Excel 2007, but it should be applicable to Excel 2010 as well:
- Click on the Office button in the top left corner.
- Select the Excel Options button at the bottom right side of the Office menu.
- Select Advanced in the left column.
- Scroll down to the Display Options for this Worksheet section.
- Uncheck the box marked Show Page Breaks.
- Click OK.

- 55,953
You can create a macro and a custom button for your ribbon to toggle them on/off so you don't have to go through the Options every time.
VBA
Sub TogglePageBreaks()
ActiveSheet.DisplayPageBreaks = Not ActiveSheet.DisplayPageBreaks
End Sub
I created/saved this macro to the Personal.xlsb file (see Copy your macros to a Personal Macro Workbook).
I then added a button to my Excel 2010 Ribbon for the macro (see How to add your own Macros to Excel Ribbon).
Clicking it toggles the page breaks on and off in any spreadsheet you open.
For Excel 2010, go to File, Options, Advanced. Then page down to Display options for this worksheet and uncheck Show page breaks. Be sure you are in Display options for this worksheet and not 'this workbook'. That should do it!!
- 10,668
- 71
In the Immediate console (Alt + F11 -> Ctro + G), execute the following command: ActiveSheet.DisplayPageBreaks = False
- 151
The fastest way I have found is to simply save your file, close and reopen. The dashed print lines should no longer be displayed.
- 41
Here are the instructions for Excel 2003:
- Go to the Tools menu and select Options.
- Select the View tab.
- In the Window Options section, uncheck the box marked Page Breaks.
- Click OK.
- 462
Go to View set "Workbook views" from Page Break preview to Normal. This will remove the background Page number" watermark.
Go to Options -> Advanced -> Display options for this worksheet -> Remove "Show page breaks". This will remove the printing dotted lines.
- 21
Excel 2011 for Mac:
1) Go to Preferences (⌘ + ,)
2) In the Authoring section, click View
3) On the right under Window options, uncheck Show page breaks
- 168