|
One of the
questions that is very
regularly asked
during training sessions: how can I access data from another workbook
in Excel. Let's say we have the data 'Salaries' in Book1. Now we open
another workbook. How can we do calculations in the new workbook using
the data in book1.
If the the workook book1 is open, we can
access it through the path and use the formula
:"=sum([book1.xlsx]Sheet1A2:A4)".
'.xlsx' is the file extension name in
Excel 2007.
If the workbook1 is closed then we have to use the complete path
including the hard-disk as shown ":=SUM('C:\Documents and
Settings\diya\Desktop\[Book1.xlsx]Sheet1'!A2:A4)".
If you had named the range 'A2:A4' in
Book1.xlsx as 'salaries' then the access path would have been
'=SUM(Book1.xlsx!salaries)
|