Excel 怎么设置 选中一个单元格后,整行/整列的颜色都变化
1个回答
展开全部
使用工作表事件吧
vba实现
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
ActiveSheet.Cells.Interior.ColorIndex = 0
Target.EntireRow.Interior.ColorIndex = 3
Target.EntireColumn.Interior.ColorIndex = 3
Application.ScreenUpdating = True
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询