Je ne connais aucun raccourci dans Excel pour le faire. Si vous avez AutoHotkey , vous pouvez utiliser le script suivant pour le faire ( Ctrl + Décalage + Défilement de la souris ):
#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
Encore mieux, vous pouvez utiliser cette version du script pour changer de feuille de calcul lorsque vous faites défiler et maintenez le bouton droit de la souris enfoncé (vous n'avez donc qu'à utiliser une seule main!):
#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
Cette approche vous évite de glisser à droite dans Excel, mais je n’en ai obtenu aucun résultat particulier.