Referencing Multiple External Workbooks

Gravoir

New Member
Joined
Apr 28, 2016
Messages
1
Hi all,

i have a large spreadsheet that I am looking to populate from multiple external workbooks. I am using the following formula which works perfectly:

=SUM('/Volumes/Seagate Drive/Thunder Cloud/Dropbox/[HD_280416.xlsx]Daily Intake'!$D$8)

My problem is that this works for one external file. I want to drag this formula across multiple cells so the part of the formula in bold automatically changes to the next day. So the above would be in cell A1 and when I drag it to A2 I get the following:

=SUM('/Volumes/Seagate Drive/Thunder Cloud/Dropbox/[HD_290416.xlsx]Daily Intake'!$D$8)

I have hundreds of files structured in the same way that have the same file names with exception to the date part which is when they were created/the day of the year the information within them is applicable to.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
We need some place to store the starting date but then you could do something like:

=SUM(indirect"'/Volumes/Seagate Drive/Thunder Cloud/Dropbox/[HD_" & column()+text(startdate, "ddmmyy") &".xlsx]Daily Intake'!$D$8"))

startdate part could simple be a cell where you are keeping the start date, such as 270416

needs to be a static cell $A$#
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,238
Messages
6,170,939
Members
452,368
Latest member
jayp2104

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top