设置电子表格,随着鼠标点的位置出现别的颜色的步骤:
工具/原料:电脑,excel,鼠标。
1、首先梁世,我们需要打开excel,新建如下图。
2、然后,在sheet1下标签处,点击鼠标右键,出现如下。
3、选择查看代码。
5、看到如下界面,插入如下代码。
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) On Error Resume Next 悄姿 Cells.FormatConditions.Delete iColor = 34 With Target.EntireRow.FormatConditions .Delete .Add xlExpression, , "TRUE" .Item
(1).Interior.ColorIndex = iColor End With With Target.EntireColumn.FormatConditions 橡运肢 .Delete .Add xlExpression, , "TRUE" .Item(1).Interior.ColorIndex = iColor End WithEnd Sub
6、保存,可以看到,如下效果了,当鼠标点到那,很明显就能把行和列这样区分出来了。