Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Application.EnableEvents = False
With Target
.NumberFormat = "$#,##0.00"
.Value = .Value * 500
End With
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B2:F30")) Is Nothing Then
Application.EnableEvents = False
With Target
.NumberFormat = "$#,##0.00"
.Value = .Value * 500
End With
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C5, D10, E12")) Is Nothing Then
Application.EnableEvents = False
With Target
.NumberFormat = "$#,##0.00"
.Value = .Value * 500
End With
Application.EnableEvents = True
End If
End Sub