Block addition of ranges
this does the whole range at once?
(OP didn't want "any cell by cell commands")
cool. i guess i can put away my wand now.
:)
susan
On May 23, 11:02 am, Tom Ogilvy
wrote:
for i = 1 to rng1.count
rng2(i) = rng2(i) + rng1(i)
Next
--
Regards,
Tom Ogilvy
" wrote:
I am trying to achieve the following with a vba macro:
Add the values of Rng1 on top of the existing values in Rng2. Rng1 &
Rng2 are the same dimensions. It can be done by copying Rng1 and doing
a PasteSpecial values add command to Rng2. However, it is a
requirement that this macro does not use the clip board.
Would really appreciate any ideas.- Hide quoted text -
- Show quoted text -
|