在EXCEL表格中如何使所选单元格 对应的 行和列 都变色,求高手赐教
展开全部
在表格名称“Sheet1、Sheet2”那里,点击右键,查看代码,把下面这段代码粘贴进去。然后回到表格中来就可以实现你要的目的了。
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Rows.Interior.ColorIndex = 0
x = ActiveCell.Row
y = ActiveCell.Column
Rows(x).Interior.ColorIndex = 6
Columns(y).Interior.ColorIndex = 6
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Rows.Interior.ColorIndex = 0
x = ActiveCell.Row
y = ActiveCell.Column
Rows(x).Interior.ColorIndex = 6
Columns(y).Interior.ColorIndex = 6
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |