So I'm more of a hardware chick that a code writer.... I'm pretty lost most of the time to be honest.

I have a small chunk of code that highlights the cell I'm actively on, but it does this by filling the interior yellow. Is there a way to remove that formatting on that cell when it is no longer the active cell? This is what I'm using:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.Interior.ColorIndex = 6
Application.ScreenUpdating = True
End Sub

Thanks for any clues!
-Courtney