How to copy data from sheet1 to sheet2
Solved/Closed
Related:
- How to copy data from sheet1 to sheet2
- Transfer data from one excel worksheet to another automatically - Guide
- Tmobile data check - Guide
- Gta 5 data download for pc - Download - Action and adventure
- Digital data transmission - Guide
- Data transmission cable - Guide
8 responses
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 8, 2009 at 08:43 PM
Sep 8, 2009 at 08:43 PM
why not use a simple macro(no need for looping etc )
first check whether this macro works.
insert a button in sheet 1 from from toollbar and assign this macro to the button.
Sub test() Worksheets("sheet1").Cells.Copy Worksheets("sheet2").Range("a1").PasteSpecial End Sub
first check whether this macro works.
insert a button in sheet 1 from from toollbar and assign this macro to the button.
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 8, 2009 at 06:18 AM
Sep 8, 2009 at 06:18 AM
you want ot copy complete sheet1 to sheet2. It depends upon whether sheet 2 is blank or does it contain alrready some data. sp,e tomes macro may not be necessary.
plese claiify.
plese claiify.
The sheet 2 is blank, I want a VBA code of abutton named 'Copy' on sheet1 once I click this it will copy alll the data from sheet1 and paste to sheet2 which is blank.
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 9, 2009 at 06:02 AM
Sep 9, 2009 at 06:02 AM
does it loop? I do not know. I thought it highlight the whole sheet and just coy ,does it take long time have you checked.
if you are intuitively unhappy about he macro try this macro
if you are intuitively unhappy about he macro try this macro
worksheets("sheet1").usedrange.copy worksheets("sheet2").range("a1").pastespecial
Didn't find the answer you are looking for?
Ask a question
Its a easiest way to do this, but I think this is not a good idea because its copying all whole sheet1. Lets think in this way I have only 2 columns. I want to copy only these columns and rows which have data. So the loop should search column and row wise if its reach to empty cell (last row with no data) it exit by copying all data and paste to sheet2.
Deepak~
Deepak~
Yes it is copying whole sheet, let me try by loop myself, if I succced I will let you know or wait for others if they are alive they will respond.
Deepak~
Deepak~
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 9, 2009 at 06:57 AM
Sep 9, 2009 at 06:57 AM
see the definition of usedrange in excel help usedrange means only the data that are entered why should you loop.
Oct 19, 2010 at 12:48 AM
May 19, 2017 at 09:32 AM
I have a question .i want to copy from one workbook to another workbook.how it will be done .kindly reply.