【Amadeus原创】EXCEL光标所在的行自动变色

image

 

方法:

1,excel中,按Alt+F11,打开VBA编辑界面,双击需要改的工作表名称,将下面代码粘贴到右边框中,即可。image

2,代码:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = 0
Rows(Target.Row).Interior.ColorIndex = 34
End Sub

 

3,如果想变颜色,改这句代码的值:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = 0
Rows(Target.Row).Interior.ColorIndex = 34
End Sub

 

4,ColorIndex值列表:

posted @ 2015-09-10 15:24  李济宏(Amadeus)  阅读(3912)  评论(0编辑  收藏  举报