Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

How can I disable the Research Pane in Microsoft Word 2007 and 2010?

In my job, I routinely have to resize table columns very precisely, which requires the use of the Alt key while dragging the columns. However, Alt+left click also brings up the Research Pane, so it's constantly popping up while I'm trying to resize table columns.

I'd love to be able to either disable the Research Pane entirely or just reassign it a different keyboard shortcut (Ctrl+Alt+left click would be fine) so it won't annoy me all the time. I've tried uninstalling the "Research Explorer Bar" from Office, but it's apparently not the same thing, as the Research Pane still pops up.

Any help would be GREATLY appreciated! Thanks!

4 Answers

Relevance
  • vbmica
    Lv 7
    9 years ago
    Favorite Answer

    There is no way to disable the Alt+click for the research pane that anyone has found. However, you can use the mouse and Alt key easily without getting the research pane to mistakenly pop up.

    Here's how:

    Click on your table border first and start dragging, when you see that you have the border moving, then hold down the Alt key. You will be able to do your precise sizing.

    And the research pane won't open!

    Hope this helps.

  • Anonymous
    4 years ago

    Microsoft Word Research

  • Anonymous
    7 years ago

    Credit for the following answer goes to Jon Peltier, who's posted this solution to a number of other boards. I have no idea where/how he found the solution, but I don't care. It works, thank goodness. Now, if only Microsoft would just make it a toggle-able option in Excel Options...

    Go to the VB Editor (press Alt-F11). Then, press Control-G (or go to View, Immediate Pane). Type the following in the Immediate pane, then press Enter:

    Application.CommandBars("Research").Enabled = false

    Even if you restart Excel, the Alt-Click will no longer produce the infuriating Research panel. If, for whatever reason, you want it back, just re-enter the command, using true instead of false.

  • jovet
    Lv 4
    5 years ago

    This solution above only applies to the current session. If you close Word/Excel, and restart it, the effect is lost.

    While you're in the Visual Basic editor, create a new "Module" then insert this code into the module after the "Option Explicit" text:

    Public Sub AutoExec

    Application.CommandBars("Research").Ena... = false

    End Sub

    This should cause this statement to Run every time you start the appropriate software (Word, Excel) and disable the darn alt-click Research pane forever. You'll need to set this macro up in each program individually (Word, Excel, etc.) to make it effective for that software.

Still have questions? Get your answers by asking now.