Thread
:
How can I automatically have 10% added to cell after typing a valu
View Single Post
#
2
Posts: n/a
Something like
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 Then ' onl;y column C
Application.EnableEvents = False
Target = Target * 1.1
Application.EnableEvents = True
End If
End Sub
Reply With Quote