Excel 怎么能让光标所到的单元格高亮显示
发布网友
发布时间:2022-04-23 05:31
我来回答
共2个回答
热心网友
时间:2023-09-03 03:41
按ALT+F11调出vbe
双击左边你的表格,在右边代码窗口输入
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
With Target
.Parent.Cells.Interior.ColorIndex = xlNone
.EntireRow.Interior.ColorIndex = 6
.EntireColumn.Interior.ColorIndex = 6
End With
End Sub
热心网友
时间:2023-09-03 03:42
手机Excel表格中如何使用显示高亮功能,我们在手机上就可以查重