Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect([H25:EG75], Target) Is Nothing Then
If Target = "" Then
Target.Interior.ColorIndex = xlNone
Else
Target.Interior.ColorIndex = Cells(Target.Row, 2).Interior.ColorIndex
End If
End If
End Sub