Excel is a powerful tool for so many things, but having to resize the sheet to fit your screen every time you open a file can be a major pain. If you often find yourself wondering, “how do I make my Excel spreadsheet fit my screen”, here are three quick solutions that can make your spreadsheet much easier to view.

Regardless of what you're using Excel for, wouldn't it be nice to be able to have your spreadsheet open up automatically so that you can see all the data on your screen? Wouldn't it be sweet if your printouts contained every column resized so that it could fit on one sheet? Using one of the three steps below, you can accomplish this.

1. Fit All Columns to Screen

When you've opened a spreadsheet with more than a dozen columns or so, or maybe with very large text columns, it doesn't take long for the end of the sheet to run off the right side of your screen.

excel-fitting1

People often put up with this because they think there's no other way. The truth is that Excel is one of the best spreadsheet applications for this—reconfiguring your sheet display so that all columns fit on the screen is actually pretty simple.

Step 1: Highlight the entire first row of your spreadsheet across all columns.

excel-fitting6

Step 2: Click on the View tab, and then select Zoom to Selection.

excel-fitting7

That's all it takes for all columns to fit onto your screen. No more cut-off columns on the right side of your spreadsheet!

excel-fitting8

Problem solved, right?

Well, not quite. While this first solution works, it isn't a permanent solution unless you're willing to go through those two steps every single time you open your spreadsheet. What about when you open the spreadsheet on a different screen with a different resolution?

One solution is to automate resizing once, so you never have to think about it again.

2. Using VBA to Fit Your Excel Spreadsheet to Your Screen

What better way to automate anything in Excel than VBA?

With a Visual Basic script, you can add some code to the Worksheet.Open method to automatically resize the sheet to fix the screen. To make this easy, first select the entire first row of the sheet (including all columns you want to fit onto the screen).

In older versions of Excel, right-click anywhere in the highlighted row, and choose Define Name...

excel-fitting9

In newer versions of Excel, “Define Name...” may not be an option in your right-click menu. Instead, highlight the first row with all columns you would like to auto-fit to the screen, then head to the Tell Me tab at the top of your screen and type in Name a Range, and select the respective result.

You'll find that “Workbook” is the Scope selected, and the sheet name and range is already filled into the Refers to: field. Just type in a name for the range that you'll remember, into the Name: field.

excel-fitting10

In this next step, you'll need to click on the Developer menu item and choose View Code from the Developer menu. If you don't see the Developer option in your menu, you'll need to enable it by going to File > Options > Customize Ribbon. Make sure Developer is selected here.

excel-fitting11

If you're using Excel for Mac, then to access the Developer tab, you'll need to click the Excel tab at the top of your screen. Then choose Preferences, and select the Ribbon & Toolbar option. From here, you can check the box to turn on the Developer tab.

Editor screenshot - mac check developer option

Once you click View Code or Visual Basic in the Developer menu, make sure to double-click ThisWorkbook, and on the right pane choose Open from the list of methods on the right drop-down menu.

excel-fitting12

Then, paste in the code shown above into the function Workbook_Open(). For your convenience, select and copy the text below into your function.

        Range("DefinedRange").Select
ActiveWindow.Zoom = True
'Cells(1, 1).Select

The last line is optional. Basically, if you include it, the sheet will move back to the left side so that the first cell is selected and the view is centered toward the top, left side of your sheet.

When you save your workbook, you will have to select a macro-enabled file type, i.e., XLSM. Now, every time you open your Excel file, it'll automatically resize the sheet so that every single column fits inside the computer screen you're using, regardless of its resolution.

3. Fitting All Columns When Printing

Another problem people face when actually printing out their spreadsheets, even though all columns fit onto the display, is having all columns fit onto the printed paper sheet.

This is a real annoyance, but the fix is fast and easy. We recently showed you a whole list of ways you can fix this issue, but personally, I prefer the fast and simple rescaling approach. How this looks on your device will vary depending on the version of Excel you are using and whether you are using Mac or Windows.

When you choose Print from the File menu, you'll see in the print preview that not all of the columns are on the preview.

excel-fitting2

Scroll down to the bottom of the print menu, and click on the Page Setup... link.

excel-fitting3

In the Page Setup menu, under the Page tab, you'll see that under Scaling, the option to adjust to 100% normal size is selected by default. This will make the sheet print at its original size, whether or not the whole sheet will fit. It'll just print the rest of the worksheet on multiple pieces of paper, which is completely useless.

Instead, select Fit to: and then change the tall setting to a ridiculously high number that's much higher than the number of papers your spreadsheet will actually need for printing.

excel-fitting4

This ensures that the sheet will only be “squeezed” to fit all columns on the sheet, but won't resize the rows of the sheet. This is because if the rows are resized, it'll mess up the final formatting.

By only forcing all columns to fit, your spreadsheet will print to one sheet wide, and as many pages as needed to print all of the data.

excel-fitting5

Excel Fits Right In

In the end, reformatting your spreadsheet, no matter how massive it is, to fit everything on one PC display, or on one printed sheet, really isn't that complicated. You just have to know the right trick to use to accomplish it!

We've shown you a lot of useful tricks with Excel through the years, but now you know all three tricks for getting your data to look and print exactly the way you want it to. Don't forget to share these tricks with all of your friends and family!