Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Id like to copy some data from one open workbook to another open
workbook using vba. Date in first workbook is in sheet1 a1:m1000. Id like to copy this to sheet1 in the second workbook. Any ideas please Regards Robert |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
with Workbooks("Firstbook.xls").Sheets("Sheet1")
.Range("A1:M1000").copy Destination:= _ Workbooks("Secondbook.xls").Sheets("Sheet1").Range ("A1") "RobcPettit" wrote: Hi Id like to copy some data from one open workbook to another open workbook using vba. Date in first workbook is in sheet1 a1:m1000. Id like to copy this to sheet1 in the second workbook. Any ideas please Regards Robert |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have a look at Ron de Bruins site:
http://www.rondebruin.nl/tips.htm -- JB "RobcPettit" wrote: Hi Id like to copy some data from one open workbook to another open workbook using vba. Date in first workbook is in sheet1 a1:m1000. Id like to copy this to sheet1 in the second workbook. Any ideas please Regards Robert |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying | Excel Worksheet Functions | |||
copying the Hyperlink function result without copying the actual formula | Excel Worksheet Functions | |||
TextBox copying not like windows copying, heh? | Excel Programming | |||
Copying | Excel Programming | |||
Copying data down to next dirty cell, then copying that data | Excel Programming |