Dear All,
I would like to ask you how to add new value to the old value with percentage in VBA like the code below:
Dim c As Range
For Each c In Selection
If c.Value <> "" Then c.Value = c.Value * 0.3
Next c
The code above just calculate the value so i can't combine the new value with the old value. I would appreciate for those who can help me.
Thanks
I would like to ask you how to add new value to the old value with percentage in VBA like the code below:
Dim c As Range
For Each c In Selection
If c.Value <> "" Then c.Value = c.Value * 0.3
Next c
The code above just calculate the value so i can't combine the new value with the old value. I would appreciate for those who can help me.
Thanks