Assuming both the workbooks are open, Use the following code...
Saurabh...
The first spreadsheet, I am going to call Test.xls contains different tabs with information that I need to copy from all of them to another spreadsheet that we can call Test1.xls
For example, I would like to copy the value from:
Test.xls (Sheet 1) A10 to Test1.xls's last row.... Column 1 Then
Text.xls (Sheet 1) C15 to Test.xls's row that we used for the first copy Column 2. and so on...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
That works great saurabh, except it gives me a subscript out of error, it still copies the cell value from one spreadsheet to the other but it has that error for some reason.... Maybe I am not referencing the right sheet name lets say the sheet1 in my Test.xls is called DB and the sheet1 in Test1.xls is still the same, would the code look like this:
wb.Sheets("DB").Range("A10
wb.Sheets("DB").Range("C15
Well it should not give you that error if the sheet name is same, However its copying its value as in both the value in A Column only thats why you are not seeing the value in B Column, Use this...
wb.Sheets("DB").Ran
wb.Sheets("DB").Range
Now it copies value to both A and B Column.
Saurabh...
Business Accounts
Answer for Membership
by: unogeekPosted on 2009-11-05 at 13:30:56ID: 25754260
ashp87
Right click on the cell you want to copy the information from, click copy, goto to the row / column you want to paste the value to and right click and choose paste special. Choose the Values radio button, keep Operation as none, skip blanks unchecked and transpose unchecked, click okay. Your value is should now be within that cell from sheet 1. Repeat those steps for all info you want to copy and paste to a new sheet or row / column.