Pasting a Range

C

Charles Hoens

This seems so simple, but I can't seem to get it to work
within a macro.

I have some data which I've placed into a named range,
call it (Range1).

I want to have a macro so that the contents of this range
are copied to the active cell.

All I seem to be able to do in the macro is define a
particular cell, so the copy is always done to the same
cell. I need to copy the data to the cell that's active
when I start the macro.

Any help is most appreciated.

Charlie
 
J

John Wilson

Charles,

Example with a single cell named "MyRange"

Range("MyRange").Copy ActiveCell

John
 

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

Top