Hello everyone,
I am copying / pasting a range into a specific cell:
What I want to do is invert the values in my range after that. Or multiply the range by -1 to invert the values.
How can I accomplish this?
Thanks in advance.
I am copying / pasting a range into a specific cell:
Code:
rng.Copy
Range("A1").PasteSpecial Paste:=xlPasteValues, operation:=xlPasteSpecialOperationAdd
What I want to do is invert the values in my range after that. Or multiply the range by -1 to invert the values.
How can I accomplish this?
Thanks in advance.