Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copy cell range from one workbook to another

Status
Not open for further replies.
Dec 13, 2002
109
GB
Hi

This may be a simple question but how can I copy a cell range from one open workbook to another open workbook.
Eg Ive opened workbook "a" and workbook "b" and want to copy the cell range a1:a10 from "a" to "b".

Cheers

Ronald
 
Try:

workbooks("a.xls").sheets(1).range("A1:A10").copy workbooks("b.xls").sheets(1).range("A1")
Rob
[flowerface]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top