6 Ways To View Print Area in Microsoft Excel

Find out how to view the print area in Excel to ensure only the data you need appears on paper, saving both time and resources.

Think of your Excel print area like a presentation slide deck for a big meeting—you only want the key points to show up when it’s time to deliver.

In an Excel worksheet, setting and viewing the print area lets you control exactly what appears on paper, so you’re only printing or showing the necessary data without extra clutter.

But if you’re unsure where the print boundaries are, it can be tricky to keep things clean and professional. This guide will walk you step-by-step through how to view the print area in Excel, helping you stay organized and ready to print or present with precision.

Using the Excel Print Preview Tool

Print Preview
Print Preview

Let’s consider you’ve already set up a print area in the Excel worksheet.

To get an idea about how the printed document will look like or to view the print area, press Ctrl + P.

The Excel Print Preview window will pop open.

The preview screen will exactly show the content to be printed according to the pre-configured print area.

Ignore print area
Ignore print area

Sometimes, Print Preview might indicate that the whole content will be printed, not just those in the print area. This can happen if the Ignore Print Area option in the Settings is selected.

To fix this, click on the Print Active Sheet drop-down menu and uncheck Ignore Print Area.

Now, Print Preview will show only the content within the print area.

Print Area indicator
Print Area indicator

Once you close the Print Preview and navigate to the worksheet, you’ll see a thin outside cell border around a certain content on the sheet. That’s the Print Area indicator.

It’ll now stay as is until you clear the print area or close and reopen the workbook.

Switching to the Page Layout View

Another way to visualize the print area is by using the Page Layout command in the View tab.

Activate Page Layout view
Activate Page Layout view

Navigate to the Workbook Views block in the View tab and click on the Page Layout command.

Viewing Print Area in Page Layout view
Viewing Print Area in Page Layout view

You’ll see multiple pages side by side with rulers.

The worksheet content within the thin outside border is the print area set for the current spreadsheet.

Now, if you revert the worksheet to the Normal mode, the print area indicator will still be there until you close the workbook.

Using the Page Break Preview

Another quick way to show the print area on the worksheet is by using the Page Break Preview tool.

Page Break Preview button on Status Bar
Page Break Preview button on Status Bar

To try it out, navigate to your worksheet and click on the Page Break Preview button in the Excel Status Bar.

Print Area by Page Breal Preview
Print Area by Page Breal Preview

Excel will only show the gridlines and content demarcated within the print area in a light background whereas the rest of the worksheet will be in a dark overlay.

The thick blue boundary around the content is also for the print area. You can click on it and drag it outward or inward to change the print area in real-time.

Using a Named Range

When you set a print area in your spreadsheet, Excel automatically creates a Named Range in the background. This object is named as the Print_Area Named Range.

Name Box drop-down menu
Name Box drop-down menu

So, to quickly highlight the printable area of the active worksheet, click on the Name Box drop-down arrow near the Formula Bar area. It’s in the upper left corner of the worksheet area.

Showing Print Area using Named Range
Showing Print Area using Named Range

Select the Print_Area object which immediately selects the print area. The printable cell range is highlighted as the default Excel data selection overlay, which is more prominent than the thin outside border, which is the default style for Print Area.

You can also use the Named Range tool to create and view the print area even without setting up the print area beforehand. It uses Excel’s capability to print the selected cell range on the active worksheet. So, when you highlight a Named Range and apply the appropriate print settings in the Excel Print Preview, it only shows the printable area.

Define Name
Define Name

Select the cell range that you want to include in a Named Range, click on the Formulas tab, and select Define Name in the Defined Names block.

Creating a Named Range
Creating a Named Range

You’ll see the New Name dialog box. Type the name for the Named Range into the Name field. Ensure you don’t use any space in the name. If needed, you can use the underscore character.

Now, simply click OK on the dialog box to set up the Named Range.

Choose the Named Range in Name Box
Choose the Named Range in Name Box

Click on the Name Box drop-down arrow and select the custom Named Range you’ve created, like Named_Range_1 in this tutorial.

Excel will instantly highlight the intended cell range for printing.

Print Selection feature
Print Selection feature

Press Ctrl + P to launch the Print Preview window.

Click on the Settings drop-down list and select the Print Selection option.

You’ll see only the selected cell range in the Print Preview.

In this method, you won’t see the Print Area demarcation around the selected cell range when you come back to the worksheet. It’ll instead show the default Print Area, which is a dotted outside border matching the document size, like A4 or Letter in the workbook level.

Using the Go To Dialog

If you don’t wish to the Print Area demarcation lines and yet want to see the currently set cell range for printing, you can use the Go To tool.

Go To dialog
Go To dialog

Simply press the Ctrl + G keys simultaneously to launch the Go To dialog.

Select the Print_Area object from the Go To table and click OK.

Selected the print area
Selected the print area

You should see the cell range selection intended for printing.

Using Excel VBA

If you frequently need to view the print areas of multiple worksheets in one or multiple workbooks, you can use an Excel VBA macro. You no longer need to remember manual steps to highlight the print area. You only need to run a macro and with the click of a mouse button, you can select the printable cell range.

Before moving on to the script, you must know how to use a VBA code to set up a macro. You can review this concise Microsoft Excel tutorial:

📒 Read More: How To Use The VBA Code You Find Online

Now, use the following script to create a VBA macro:

VBA script 1
Sub HighlightPrintArea()
    Dim ws As Worksheet
    Dim printArea As Range
    
    ' Set the worksheet to the active sheet
    Set ws = ActiveSheet
    
    ' Check if the worksheet has a defined print area
    On Error Resume Next
    Set printArea = ws.Range(ws.PageSetup.printArea)
    On Error GoTo 0
    
    ' If no print area is set, exit the sub
    If printArea Is Nothing Then
        MsgBox "No print area is set.", vbInformation
        Exit Sub
    End If
    
    ' Select the print area
    printArea.Select
    
    ' Apply a thick outside border to the print area
    With printArea.Borders(xlEdgeLeft)
        .LineStyle = xlContinuous
        .Weight = xlThick
    End With
    With printArea.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .Weight = xlThick
    End With
    With printArea.Borders(xlEdgeRight)
        .LineStyle = xlContinuous
        .Weight = xlThick
    End With
    With printArea.Borders(xlEdgeBottom)
        .LineStyle = xlContinuous
        .Weight = xlThick
    End With
    
    ' Notify the user
    MsgBox "Print area highlighted with a thick border.", vbInformation
End Sub
Macro dialog box
Macro dialog box

Once the macro is ready, hit Alt + F8 to bring up the Macro dialog box.

Highlighted the print area
Highlighted the print area

Select the HighlightPrintArea macro from the dialog and hit Run.

Excel will instantly look up and highlight the preconfigured print area in the active worksheet.

📚 Read more: You might also want to read the following tutorials to learn more about printing content in Excel:

Conclusions

So far, you’ve learned how to view the print area in Excel in six intuitive methods, like the Print Preview tool, the Page Layout view, the Page Break Preview, Named Ranges, Go To dialog, and Excel VBA.

If this quick guide helped you learn a new Excel skill, feel free to share your thoughts in the comment box. Also, if you know of any other ways to highlight cell ranges in a preconfigured print area, share it in your comment.

About the Author

Tamal Das

Tamal Das

I'm a freelance writer at HowToExcel.org. After completing my MS in Science, I joined reputed IT consultancy companies to acquire hands-on knowledge of data analysis and data visualization techniques as a business analyst. Now, I'm a professional freelance content writer for everything Excel and its advanced support tools, like Power Pivot, Power Query, Office Scripts, and Excel VBA. I published many tutorials and how-to articles on Excel for sites like MakeUseOf, AddictiveTips, OnSheets, Technipages, and AppleToolBox. In weekends, I perform in-depth web search to learn the latest tricks and tips of Excel so I can write on these in the weekdays!

Related Posts

Comments

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Get the Latest Microsoft Excel Tips

Follow Us

Follow us to stay up to date with the latest in Microsoft Excel!

Subscribe for awesome Microsoft Excel videos 😃