Mouse Scroll Wheel Doesn't Work when Editing Formulas

Written by Allen Wyatt (last updated October 21, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


1

When putting together a formula in a cell, Von can type (for instance) an equal sign, click on a cell, type a plus sign, and finally click on the other cell. Recently, though, he cannot use the scroll wheel on the mouse to navigate to the cells he wants included in the formula. He can use the scroll wheel when he's just working in the worksheet, but once he is editing a formula, the scroll wheel no longer works to scroll the screen. It happens only on this one computer system; others in the office work as expected. Von wonders how he can fix this.

Von is not alone in this problem, as it is one that has plagued Excel users for quite some time. There are different manifestations of this problem, and it is an area where it is very helpful to be precise in what is going on. Let me explain...

In Excel, you have the potential to edit formulas (or enter them) either in the Formula bar or directly in the cell. You can control whether all editing occurs in the Formula bar or not by following these steps:

  1. Display the Excel Options dialog box. (In Excel 2007 click the Office button and then click Excel Options. In Excel 2010 and later versions, display the File tab of the ribbon and then click Options.)
  2. Click the Advanced option at the left of the dialog box. (See Figure 1.)
  3. Figure 1. The Advanced options in the Excel Options dialog box.

  4. Make sure the Allow Editing Directly In Cells check box is selected.
  5. Click on OK.

It is the selecting or clearing of the Allow Editing Directly In Cell check box (step 3) that controls whether the user can edit in cells or not.

As a side note, with the dialog box visible, you may want to make sure that you also clear the Zoom On Roll with Intellimouse option. When this option is selected, then the mouse wheel doesn't really navigate, but instead us used to control the zoom factor at which you are viewing your workbook.

Experience has shown that if you have the Allow Editing Directly In Cell check box turned off—meaning that the user can edit only in the Formula bar—then there is a weird side effect that has been plaguing Excel users for the past decade or so. (At least since the advent of Excel 2007.) When you press F2 to edit a formula, the insertion point jumps into the Formula bar, as you would expect. However, that also means that the worksheet itself loses focus and, since it loses focus, you can no longer navigate through the worksheet using the mouse wheel. This means the user can then no longer scroll through the worksheet to click a cell. Some users have reported that they've been able to fix the issue by doing one of the following:

  • Turn on the capability to edit within a cell and do all the editing there instead of in the Formula bar.
  • Update mouse drivers.
  • Use a different mouse. (Some have reported this problem only with Logitech mice but not with those from other manufacturers.)
  • Add a third-party Excel add-in or utility such as AlwaysMouseWheel.

These things haven't worked for all users, however. This means that if you are experiencing this issue (like Von is), then the only thing you can do is to try one potential fix after another until you find one that works for you. Or, worse still, find a combination of the above fixes that works for you.

Since this problem didn't exist in versions of Excel before Excel 2007, it is definitely an issue with the program itself—something that Microsoft did when releasing the then-new version of the software changed how Excel behaved relative to the mouse, and they haven't fixed it since that point.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12051) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Turning Off Borders for Data Series

Don't want a border to appear around a data series represented in a Microsoft Graph chart? You can easily control the ...

Discover More

Converting Text to Values

When you import information originating in a different program, Excel may not do the best job at figuring out what ...

Discover More

Summing Based on Part of the Information in a Cell

Excel provides a variety of tools that allow you to perform operations on your data based upon the characteristics of ...

Discover More

Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!

More ExcelTips (ribbon)

Symbols Convert to Numbers in Excel

Insert a symbol into a cell, and it should stay there, right? What if the symbol changes to another character, such as a ...

Discover More

Preparing Data for Import into Access

When importing Excel information into Access, you need to be concerned with the condition of the data. Here's how to make ...

Discover More

Defeating Date Parsing when Pasting Information

Paste information directly into a worksheet, and you may be surprised that Excel makes some of the data unusable. This ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is two more than 7?

2023-10-21 12:03:42

J. Woolley

My Excel Toolbox includes the ToggleEditInCell macro (Ctrl+T E D) to enable or disable Excel's "Allow editing directly in cells" option. The macro supports Undo (Ctrl+Z). Here is an abbreviated version:

Sub ToggleEditInCell()
    Const myName As String = "ToggleEditInCell"
    With Application
        .EditDirectlyInCell = (Not .EditDirectlyInCell)
        .OnUndo myName, (ThisWorkbook.Name + "!" + myName)
    End With
End Sub

See https://sites.google.com/view/MyExcelToolbox/
For related discussion, see https://excelribbon.tips.net/T009308_Controlling_Where_You_Edit_Cell_Contents.html


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.