Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须建立一个邮件地址数据库。
烦人的事情是密切关注您已经填写的内容。我想添加一个按钮来突出显示整行。我怎样才能做到这一点?
我用谷歌搜索,但我找不到任何真正有用的东西。
我可以自己突出显示它们,但我希望它们只需单击一下即可突出显示,而不是先选择行然后选择颜色。
基本上它是这样的:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Cells.Interior.Pattern = xlNone Rows(Target.Row).Interior.Color = 65535 End Sub