Hi
To access cell A1 of some sheet in workbook on shared network resource:
='\\Server\SharedResource\Path\[FileName.xls]SheetName'!$A$1
where 'Server' is the network name for server/computer, 'SharedResourc' is
share name for shared folder, and 'Path' lists subfolders (when there are
some). An Example:
On computer 'Comp1' some folder is shared as 'ExcelShares'. In subfolder
'John' is an excel workbook 'JohnsData', with a table on sheet Data. To get
the value from cell A1, the formula will be
='\\Comp1\ExcelShares\John\[JohnsData.xls]Data'!$A$1
I myself prefer to map the shared resource. With previous example I map
ExcelShares on computer Comp1 p.e. as 'J', and set the share to be reopened
when computer is restarted. Now the formula will be:
='J:\John\[JohnsData.xls]Data'!$A$1
You can refer a range too:
=SUM('J:\John\[JohnsData.xls]Data'!$A$1:$A$1000)
You can use such links as parameters for most of formulas. One Exception is
INDIRECT, which returns error, whenever the source file is closed (some
other functions too, when I remember correctly, but I don't have list of
them at moment ready)
--
Arvi Laanemets
(When sending e-mail, use address arvil<At>tarkon.ee)
Richie Richardson said:
I am trying to look up data that is located in another workbook on a network
drive. I already have the reports location referenced but I don't know the
proper syntax to join a lookup statement to the report address so the total
formula will look up a particular value in a particular row in the other
workbook and place that value in the cell in my workbook... if that makes any
sense at all.