Como posso atribuir atalhos de teclado do Excel para macros que usam teclas diferentes de Ctrl + {alpha character}?

1

Gostaria de atribuir atalhos de teclado a macros do Excel que usem chaves diferentes do padrão Ctrl + {caractere alfa}. Com base neste post, parece que é possível, mas não sei como:

There are 3 different kinds of keyboard shortcuts I know of:

  1. Ones like Ctrl-C for Copy
  2. Ones like Alt-E-S-V for Edit > Paste
  3. Special > Values A shortcut key combo you assign to your own macro

    . . .

    With #3 it's still the same as it was in earlier versions, just go into the Macro dialog and change the shortcut in Options. You only have the choice of Ctrl and one key, I believe. With VBA you can actually create longer combos like Ctrl-Shft-N (one of my favorites).

Link para o original

Doug, você se importaria de fornecer detalhes adicionais?

    
por Jeffrey Ballagh 26.03.2015 / 20:47

1 resposta

0

Você pode usar OnKey para atribuir uma macro a praticamente qualquer pressionamento de tecla. Veja:

link

    
por 26.03.2015 / 22:01