Private Sub Worksheet_Change(ByVal Target As Range)
'Fairway Rd 1
If Not Intersect(Target, Range("G4:G400")) Is Nothing Then
If Target.Value <> "" Then
Application.EnableEvents = False
With Target
.Value = .Value / Range("G3").Value * 100
End With
Application.EnableEvents = True
End If
End If
'Fairway Rd 2
If Not Intersect(Target, Range("H4:H400")) Is Nothing Then
If Target.Value <> "" Then
Application.EnableEvents = False
With Target
.Value = .Value / Range("H3").Value * 100
End With
Application.EnableEvents = True
End If
End If
'Fairway Rd 3
If Not Intersect(Target, Range("I4:I400")) Is Nothing Then
If Target.Value <> "" Then
Application.EnableEvents = False
With Target
.Value = .Value / Range("I3").Value * 100
End With
Application.EnableEvents = True
End If
End If
End Sub