excel 选择一个单元格 所在行列变色 怎么设置
2个回答
展开全部
根据描述可以使用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、点击单元格,查看效果
展开全部
根据描述可以使用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、点击单元格,查看效果
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、点击单元格,查看效果
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询