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, 2021, and Excel in Microsoft 365


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, 2021, and Excel in Microsoft 365.

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

Editing Individual Cells

Need to edit the data within a cell? There are any number of ways you can perform the edit; this tip documents them all.

Discover More

Adding Data Labels to Your Chart

Adding labels to a chart can make the information presented in the chart more understandable. Excel allows you to add ...

Discover More

Find and Replace in a Column or Row

Need to search for information in a table? Word allows you to easily limit your search to an entire column or row, as ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (ribbon)

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

Automatically Breaking Text

Want to convert the text in a cell so that it wraps after every word? You could edit the cell and press Alt+Enter after ...

Discover More

Forcing Editing to Be Done in a Cell

Excel allows you to edit your cell contents in two places. What if you want to limit where editing occurs, so it can only ...

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 7 + 9?

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.