如何改变excel中已选取的单元格颜色
发布网友
发布时间:2022-04-20 11:44
我来回答
共1个回答
热心网友
时间:2023-10-10 18:37
这个可用VBA做到。
点当前工作表下的标签,右键“查看代码”,把下面代码复制进去,再回到EXCEL窗口,试一下吧。
Dim
x,
y
Private
Sub
Worksheet_SelectionChange(ByVal
Target
As
Range)
Target.Interior.ColorIndex
=
6
If
x
=
0
Then
x
=
1:
y
=
1
If
Cells(x,
y).Interior.ColorIndex
=
6
Then
Cells(x,
y).Interior.ColorIndex
=
xlNone
End
If
x
=
Target.Row
y
=
Target.Column
End
Sub
这样当前选定的单元格会自动加上*底色,取消选取是地,底色自动消失。