在excel里怎样做到用鼠标单击一个单元格,这个单元格的填充颜色可以在三种颜色之间切换

2024-11-20 12:22:37
推荐回答(1个)
回答1:

要用宏来设置,比如说你可以这么做:
1、“工具”→“宏”→“Visual
Basic
编辑器”
2、双击“Microsoft
EXCEL
对象”下的“Sheet1”
3、在右边的最大的空白处粘贴以下代码:
Private
Sub
Worksheet_SelectionChange(ByVal
Target
As
Range)
If
ActiveCell.Interior.ColorIndex
=
3
Then
ActiveCell.Interior.ColorIndex
=
6
Else
If
ActiveCell.Interior.ColorIndex
=
6
Then
ActiveCell.Interior.ColorIndex
=
4
Else
ActiveCell.Interior.ColorIndex
=
3
End
If
End
If
End
Sub
4、关闭“Visual
Basic
编辑器”窗口,在EXCEL里点击某单元格试一下效果。