在EXCEL表格中如何使所选单元格 对应的 行和列 都变色,求高手赐教

2024-11-29 10:34:32
推荐回答(2个)
回答1:

在表格名称“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

回答2:

excel必备工具箱