是否存在用于突出显示单元格黄色的Excel键盘快捷键?


2

是否有键盘快捷方式来突出显示单元格黄色(或者可能只是最近使用的颜色)?

我不需要的东西(我想要在excel中预先设置并且更有效的东西):

  • Alt- H- H+使用箭头键在导航到调色板黄色
  • 将调色板添加到快速访问
  • 创建我自己的快捷方式或宏(Ctrl+ Shift+ #some key#
  • F4 重复上一次击键

Answers:


1

不,但是你可以做一个。您可以将VBA宏分配给所需的任何键。

首先,在VBE中打开您的个人宏存储。按ALT + F11

然后将此宏粘贴到:

Sub HighlightYellow()
'
' HighlightYellow Macro
'
    With Selection.Interior
        .Pattern = xlSolid
        .PatternColorIndex = xlAutomatic
        .Color = 65535
        .TintAndShade = 0
        .PatternTintAndShade = 0
    End With
End Sub

现在保存您的个人宏工作簿并关闭VBE。

按ALT + F8

然后为新宏分配一个快捷方式。


0

另一种更加灵活的方法是使用AutoHotKey脚本:

#NoEnv
SendMode Input

;  Ctrl: ^
; Shift: +
;   Alt: !

^+d::  ; Ctrl + Shift + d (change to your needs)
    Send, {Alt}
    Sleep, 10  ; wait 0.01 seconds
    Send, {h 2}{Down 6}{Right 3}{Enter}  ; Select yellow
Return
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.