clear, copy and paste

R

Richard Leclezio

I have a workbook with a sheet "default" that has data in
it. I then have a workbook with a sheet "monarch" that
also has data in it. What i need done is the data
in "monarch" cleared and then the data from "default"
copied and paste in "monarch". Please help.
 
D

Don Guillett

select the default sheet cells button(left of the A and above the
1)>copy>select the cells button on the monarch sheet>paste
if you want a macro, try the recorder.
 
R

Richard Leclezio

have already tried to record, but an error meeasge comes
up when i Columns("A:G").Select
 
T

Tom Ogilvy

worksheets("Monarch").Cells.Clear
worksheets("Default").Cells.Copy
Destination:=Worksheets("Monarch").Range("A1")
 

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