Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default clear, copy and paste

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.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default clear, copy and paste

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

"Richard Leclezio" wrote in message
...
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.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default clear, copy and paste

have already tried to record, but an error meeasge comes
up when i Columns("A:G").Select
-----Original Message-----
select the default sheet cells button(left of the A and

above the
1)copyselect the cells button on the monarch sheetpaste
if you want a macro, try the recorder.

"Richard Leclezio"

wrote in message
...
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.



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default clear, copy and paste

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

--
Regards,
Tom Ogilvy

"Richard Leclezio" wrote in message
...
have already tried to record, but an error meeasge comes
up when i Columns("A:G").Select
-----Original Message-----
select the default sheet cells button(left of the A and

above the
1)copyselect the cells button on the monarch sheetpaste
if you want a macro, try the recorder.

"Richard Leclezio"

wrote in message
...
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.



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default clear, copy and paste

Sub copysht()
Sheets("sheet1").Cells.Copy Sheets("sheet3").Cells
End Sub

"Richard Leclezio" wrote in message
...
have already tried to record, but an error meeasge comes
up when i Columns("A:G").Select
-----Original Message-----
select the default sheet cells button(left of the A and

above the
1)copyselect the cells button on the monarch sheetpaste
if you want a macro, try the recorder.

"Richard Leclezio"

wrote in message
...
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.



.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with macro to copy, paste, and clear cell values Anthony[_5_] Excel Discussion (Misc queries) 8 December 21st 09 02:11 PM
Clear and Copy vs Delete Barry Lennox[_2_] Excel Discussion (Misc queries) 2 December 19th 08 08:46 PM
How do I get a clear image when I paste a .pdf into excel MKLeisure Excel Discussion (Misc queries) 2 July 23rd 07 08:32 PM
Clear Clipboard after Copy Connie Excel Discussion (Misc queries) 2 November 8th 06 07:20 AM
How clear the cut/copy blinking boxes after macro John Excel Worksheet Functions 2 January 13th 06 11:37 PM


All times are GMT +1. The time now is 10:23 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"