当前位置: 首页 > 办公技巧 > 正文

excel办公技巧聚光灯(只需一步让EXCEL拥有聚光灯,高亮活动单元格所在行列)

  • 叁碗诸角 叁碗诸角
  • 办公技巧
  • 2023-07-12 23:12:30
  • 0

在EXCEL中面对大量数据时,常常看的头昏眼花,要是有个聚光灯能高亮活动单元格行列就好了,其实,只需简单操作就能让你的EXCEL具备这个功能!

先来看看效果:

只需要打开VBE编辑器,在ThisWorkbook中输入以下代码,然后保存为启用宏的工作表(.xlsm 、.xls)即可!

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)

Application.ScreenUpdating = False

Cells.Interior.ColorIndex = -4142

Cells.Font.ColorIndex = 1

'取消单元格原有填充色,但不包含条件格式产生的颜色。

Rows(Target.Row).Interior.ColorIndex = 49

Rows(Target.Row).Font.ColorIndex = 2

'活动单元格整行填充颜色

Columns(Target.Column).Interior.ColorIndex = 49

Columns(Target.Column).Font.ColorIndex = 2

'活动单元格整列填充颜色

Application.ScreenUpdating = False

End Sub


最新文章