Horizontal scroll by mousewheel not working

Anonymous
2013-09-05T07:57:46+00:00

I have a Logitech M500 mouse. This mouse has a mechanical mousewheel (the "ticking" kind), which can also be clicked from the sides to horizontally scroll. The great thing as that this works almost everywhere... In my browser, in Notepad++, basically almost everywhere as far as the programs go that I use. Except for Excel 2013.

Possibly related, it also doesn't work in regular ol' Explorer file browser windows. Not a bother, because I use Total Commander. But the horizontal scroll thing does work in Internet Explorer 10, which seems odd to me (same company behind Explorer and Internet Explorer, after all).

When I got the mouse, I did not install any drivers myself. I just connected the mouse and let Windows looks for and install proper drivers completely automatically. And since it works perfectly in the browser and my code editor, I figured the horizontal scroll function was working properly.

Is there perhaps some kind of thing that I need to do to make Excel recognize a horizontal scoll from the scrollwheel, or have I perhaps stumbled upon a bug?

btw, this is my mouse:

http://www.logitech.com/en-us/product/corded-mouse-m500

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

86 answers

Sort by: Most helpful
  1. Anonymous
    2014-01-17T15:53:34+00:00

    @Microsoft, would you fix this bug please? It's a real problem. I understand you're giving priority to security issues, but srsly, we shouldn't have to push so hard to get you to fix a real bug, albeit a regular one.

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2016-05-16T10:27:07+00:00

    Hi,

    I am using Autohotkey to enable "SHIFT-mouse scroll" type horizontal scroll in Excel. The key shortcut can be changed to anything, if you like..

    Steps

    1. Install Autohotkey
    2. Copy and paste the code below to notepad, and save it as "myscript.ahk"
    3. Right click the file, and select "Run script".

    tips: You may also want to make the script run every time you start your computer, or hide the AHK tray icon.

    #MaxHotkeysPerInterval 200

    #HotkeyInterval 500

    SetTitleMatchMode, 2

    #IfWinActive, Excel

    ~LShift & WheelUp::  ; Scroll left.

        {

            SetScrollLockState, on

            send,{left}

            SetScrollLockState, off

        }

    return

    ~LShift & WheelDown::  ; Scroll right.

        {

            SetScrollLockState, on

            send,{right}

            SetScrollLockState, off

        }

    return

    #IfWinActive

    Was this answer helpful?

    10 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2016-02-25T19:27:44+00:00

    Hi, all.

    If you still look for the solution, maybe this will be helpful for you:

    http://free-sk.t-com.hr/T800soft/software/XLHscroll.htm

    There is an Excel COM add-in that enables horizontal scroll with mouse wheel while Shift key is pressed. The author claims it works in Excel 2000-2013 and also fixes a mouse wheel bug that crashes (older) Excel versions 2000-2007.

    This Excel Horizontal Scroll Add-In works perfectly fine for me and I'm very grateful to its author.

    Was this answer helpful?

    10 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2014-12-14T13:25:37+00:00

    I am also eagerly waiting for a fix to this issue.  I'm using a brand new Microsoft Sculpt Mobile Mouse on Microsoft Windows 7 Professional, Microsoft Office 365.  It's too bad Microsoft couldn't make their own mouse work with their own software on their own operating system.  Don't they use their own products or read their own forums?  It seem's like someone should have noticed the problem by now.

    Was this answer helpful?

    10 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2017-05-28T05:24:42+00:00

    Working Solution: Foolproof!

    I was struggling a lot with this for a while and found a solution that is guaranteed to work. It involves the use of an existing workaround for those without the horizontal mouse scroll: it creates a shortcut. While holding shift, pushing the scroll wheel up and down will cause you to scroll from left to right. It can be found here: http://free-sk.t-com.hr/T800soft/software/OfficeScroll.html

    Once you've installed the add-on, you can simply build an application-specific macro so that, whenever you're in Excel, scrolling left will hold shift, wait 10 milliseconds, scroll down, and release shift. Set the macro to trigger every 20 milliseconds while you're holding the left scroll. Do the same for the right scroll. Here is a screenshot:

    This will behave exactly like normal horizontal scrolling. Depending on your mouse driver, it will probably look different, but try to achieve the same general idea.

    Notes to install the hyperlinked addon:

    I had some trouble, so I wanted to let you guys know. First, try the normal way outlined in the INFO.txt file. If this doesn't work (it didn't for me), simply follow the steps below:

    1. Manually extract and copy all the files in the zip to "C:\Users\Andy\AppData\Roaming\Microsoft\AddIns" (without the quote marks). NOOB ALERT: AppData is a hidden folder. Go to Organize > Options > View and check the box "show hidden files and folders." the AppData folder should now be visible. If you can't find a button that says organize, go to the view tab on the ribbon and select "view hidden files and folders." If you can't find either of these buttons, then go Google it.

    1. Go into Excel, hit file > options > add-ins
    2. Look for Manage: Excel Add-ins. Hit Go

     

    1. hit Browse

    1. Go to where you extracted the files and select the one called "MsoScroll.xla" and hit okay.
    2. no errors or warnings should appear. A new item should be in the list called Office Scroll Add-in Loader. Ensure the box is checked.
    3. hit okay, and leave the options menu before closing and re-opening office.
    4. Test the addon. Shift+ scroll up or down should result in horizontal scrolling
    5. Do whatever steps you need to set up the macro described above and you should be horizontal scrolling like a boss.

    I would like to emphasize that this is a hacky workaround and MICROSOFT OFFICE SHOULD FIX THIS PROPERLY!!! Having to do this kind of **** is insane. Anyway, it should work.

    If you can get shift + scroll to work, but the macro isn't working, try increasing the delay between the "shift-down" event and the "scroll-wheel forward" event. If this doesn't work, try adding multiple "scroll-wheel forward events," playing with the delay between repeats, and general ****. 

    If you can't get shift + scroll to work, try making sure that the extracted files are in the right directory. If there is no folder called add-ins, try finding an add-ins or plugins folder in excel's AppData file. Just generally look around for anywhere you might expect to find add-ons for something either Microsoft office or excel related and paste the files there. Remember not to paste the folder, paste the files.

    Best of luck, it shouldn't be too difficult, but I like to be thorough when posting because the only thing worse than a bug you can't find a solution for is a bug that some guy posts a solution for with the note that it might require some tweaking, but no instructions on how to actually tweak it properly. May the Force be with you.

    Was this answer helpful?

    9 people found this answer helpful.
    0 comments No comments