Paste Small Range into Big Range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Howdy,

I have tow ranges, smallRange and bigRange. Both are dynamically named, 1
column wide and smallRange is always <= bigRange. I want to copy the
smallRange and paste it into bigRange, but when I do, the smallRange values
repeat until the bigRange is full.

For example if smallRange is numbered 1-10 and bigRange was 100 rows high,
the result of:
smallRange.copy Destination:=bigRange
gives 1-10, 10 times. IOW, the bigRange is filled with several iterations
of smallRange.

Any suggestions on how to prevent this?

Regards,
Tim
 
Maybe you want this:

Range("smallRange").Copy Range("bigRange").Cells(1)

RBS
 
RB,

Thanks for the tip, appears to do the trick.

Must have been too late, or early, depneding on your perspective...

Regards,
Tim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top