The Research pane is a small utility build in some Office applications. It allows to search the meaning of a word, get synonyms, pronunciation…
The Research Pane is, however, often opened by accident. When pressing the ALT key and clicking, the window opens on the right side. This can be very annoying to say the least. I had the same issue for a long time and I wanted to disable the Research pane completely, so it would not appear again by accident when hitting that ALT key during my work. Here is how!
Here are the steps to disable the Research pane in Excel and Word:
- Open Excel, and open a new empty file.
- Now press ALT+F11 keys to open the Visual Basic for Applications window.
- You now have a Visual Basic editor open. Press CTRL+G keys to open the Immediate Window.
- In that new window, paste the following: Application.CommandBars(“Research”).Enabled = False and press ENTER key
- Save your work (CTRL+S)

Note that after pressing ENTER, nothing will appear to happen. There will be no confirmation or information pop-up that will say ‘success’ or ‘operation completed’. Don’t worry at this stage, this means the command was executed correctly and successfully.
The very last step is to close the Office windows (Excel and/or Word). Once re-opened, the annoying Research pane will no longer appear.
Thank You, Thank You, THANK YOU!!!
Trust Microsoft to implement something that completely brings your work to a halt…
I couldn’t even type text into a cell.
The research pane appeared upon selecting any cell, with some crazy irrelevant search text and searching Spanish & French dictionaries enabled (I speak English and located in Australia).
All of my shortcut keys became disabled. I have a .xlsm workbook that opens hidden whenever I start Excel and it contains a host of VB code and shortcut key assignments that I use all the time. Including (believe it or not) all my Excel 4 macros that I wrote back in the 1990’s. Why would I still use those you might ask? Because they can be undone, they are basically menu commands in text form. Try to do any of these simple operations in VB and WHAM, your undo stream is cleared and you cannot undo.
Sorry for the rant – I got a bit worked up, just gradually calming down again, now that I can continue working normally!
Run-time error ‘9’:
Subscript out of range
Didn’t work, don’t know what that error means.
if you copy paste it from the above solution the double quotes are not copied properly.
Hence type the double quotes from keyboard.
That’s it.
Thanks so much for this. i had the same issue, but manually typing the double quotes fixed the issue.
if you copy pasted it from the above solution the double quotes are not copied properly.
Hence type the double quotes from keyboard.
That’s it.
Thank you so much!
Hi,
I tried but I am getting error popup-
Runtime error – `9′
Subscript out of range
Thank you so much.
My Excel was responding when I press ALT+F11 at all. Therefore, I went turn on Developer to open up VBA screen. Copy paste the code you gave, and it works.
Really appreciate!!!!
The only thing that happens when I press Alt+F11 is the document just moves down to the taskbar
This remedy saved me a lot of aggravation. Thanks!
(also the note re entering the double-quotes manually)