No conozco ningún atajo en Excel para hacerlo. Si tiene AutoHotkey , puede usar el siguiente script para hacerlo ( Ctrl+ Shift+ Desplazamiento del mouse ):
#IfWinActive, Microsoft Excel ; Makes the hotkey work only when you're working in a window titled Microsoft Excel
^+WheelDown::Send ^{PgDn} ; Control-Shift-Scroll Down moves to the next worksheet
^+WheelUp::Send ^{PgUp} ; Control-Shift-Scroll Up moves to the previous worksheet
#IfWinActive ; End of hotkeys that only work in Excel
Aún mejor, podría usar esta versión del script para cambiar las hojas de trabajo cuando se desplaza y mantiene presionado el botón derecho del mouse (¡así que solo tiene que usar una mano!):
#IfWinActive, Microsoft Excel ; Makes the hotkey work only when you're working in a window titled Microsoft Excel
RButton & WheelDown::Send ^{PgDn} ; Right Mouse Button-Scroll Down moves to the next worksheet
RButton & WheelUp::Send ^{PgUp} ; Right Mouse Button-Scroll Up moves to the previous worksheet
RButton::Send {RButton}
#IfWinActive ; End of hotkeys that only work in Excel
Este enfoque le impide arrastrar hacia la derecha en Excel, pero no he visto ningún resultado especial al hacerlo.