VBA code trouble with numbers

jess3300

New member
Joined
Dec 25, 2013
Messages
1
Reaction score
0
Points
0
hello, im in a bit of a pickle, i have the following VBA code
Code:
Range("G" & ARow).Value = Range("H" & ARow).Value + Range("G" & ARow).Value
an its fine really but what im looking for is a way to deduct much like the same way the code above is adding, the same way but deduction

thank in advance :) and merry Christmas in advance too :p lol!
 
Simply exchange your adding (+) sign with the deduction (-) sign.
Works beautifully as expected.

Oh now i see your signature - you propably pulled my leg asking this one :p lol!
 
Back
Top