To refer to a range in a different workbook : Range Reference « Excel « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Excel
- Range Reference
To refer to a range in a different workbook
Sub bookRange()
Workbooks("Budget.xlsx").Worksheets("Sheet1").range ("A1:C5 ")
End Sub
Related examples in the same category