取消excel选中单元格时行列变色,如何进入VBE编辑器粘贴代码
发布网友
发布时间:2022-04-26 06:09
我来回答
共2个回答
热心网友
时间:2023-10-08 16:41
根据描述可以使用vba的selection
change
事件来处理
excel版本参考:2010
1、alt+f11,进入vbe编辑器
2、双击sheet1标签,粘贴如下代码:
private
sub
worksheet_selectionchange(byval
target
as
excel.range)
on
error
resume
next
cells.formatconditions.delete
with
target.entirerow.formatconditions
.delete
.add
xlexpression,
,
"true"
.item(1).interior.colorindex
=
9
end
with
with
target.entirecolumn.formatconditions
.delete
.add
xlexpression,
,
"true"
.item(1).interior.colorindex
=
9
end
with
end
sub
3、关闭vbe对话框,返回工作表
4、点击单元格,查看效果
热心网友
时间:2023-10-08 16:41
你这个界面是已经按了ALT+F11的状态,表示你已经进入了VBE,现在要查看代码可以按CTRL+R。