将Application.ScreenUpdating应用于除第一行之外的所有工作表

有没有人知道如何将以下内容应用到我的工作表中,除了前两行?

Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.ScreenUpdating = False Cells.Interior.ColorIndex = 0 Target.Interior.ColorIndex = 23 Cells.Font.ColorIndex = 0 Target.Font.ColorIndex = 2 Cells.Font.Bold = False Target.Font.Bold = True Application.ScreenUpdating = True End Sub 

谢谢

If Target.Row > 2 Then

你是这个意思吗?