Can I make Excel scroll smoothly without using middle-click? Can I make Excel scroll smoothly without using middle-click? vba vba

Can I make Excel scroll smoothly without using middle-click?


Another tip: when you click on Scroll lock on your keyboard, this will change the way your arrows keys will work.

Instead of moving from cell to cell, it will move the screen.

Yet, as Issun said, you cannot change Excel and AFAIK, you cannot "split" a cell when scrolling.

Furthermore, you can also change the number of rows that will scroll in the Windows Control Panel.


I'm sorry to tell you but the snapping to the top of a cell when you scroll is a design choice by Microsoft that you simply cannot get around while working within Excel. You can middle click your mouse to enable smooth preview zoom with the mouse, but once you click the program, it will snap back.

Instead of looking for a plug-in, you should look for a different program to run the .xls files to work on them. Perhaps even something as simple as opening the document in Google docs might allow you to scroll normally.

That being said, if you are having the problem of the cells being so big that when you scroll down it skips over some cells, assign either a command button or keyboard shortcut to this macro:

Sub DownOne()ActiveWindow.SmallScroll Down:=1End Sub

I have used this on several occasions due to Excel skipping cells because of their size. The reason is that the mouse "single scroll down" is by default set to Down:=3You might be able to map this macro to a mouse wheel scroll event, but I believe you need to add a .dll to use that event (ref: http://support.microsoft.com/kb/837910)


Click down on scroll wheel (middle) of mouse (remember not turn, but click down). This will produce unique four way arrow. Now drag mouse up or down (or even sideways, left or right) and you will get slow smooth scroll.