Botão central do mouse para mover entre planilhas

0

Eu tenho uma pasta de trabalho do Excel com cerca de 30 planilhas. Eu sei que posso fazer Ctrl + PageUp e Ctrl + PageDown para mover entre as planilhas.

Existe uma maneira de fazer isso usando o botão central do meu mouse também?

    
por Raj More 02.12.2010 / 19:08

1 resposta

3

Não conheço nenhum atalho no Excel para fazer isso. Se você tem o AutoHotkey , você pode usar o seguinte script para fazê-lo ( Ctrl + Shift + Mouse Scroll ):

#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

Melhor ainda, você pode usar esta versão do script para alterar as planilhas quando estiver rolando e segurando o botão direito do mouse (então você só precisa usar uma mão!):

#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

Essa abordagem evita que você arraste para a direita no Excel, mas não vi nenhum resultado especial ao fazer isso.

    
por 02.12.2010 / 19:52