I'm not sure if this one is even possible, but if it is, it would make things a lot easier.
I have a template that I use weekly and it summarizes category data from other spreadsheets during that week's time. Since the template is doing a week at a time, I have columns for the dates that increment based on the first date entered. The files that it references are directly tied to the dates, ie, 20060515. Under each date is summary information being pulled from the other spreadsheets, so in the case of 20060515, it is pulling from 20060515.xls within the same directory. An example part of one of the summary formulas looks like this:
IF([20060515.xls]TRACKING!$B$3="Org",[20060515.xls]TRACKING!$C$3,0)
I am wanting this to be dynamically based off the date so it will automatically know which files to look in because this is a template, so idealy, it would be something along the lines of (presuming B2 had the value: 20060515):
IF('[' & B2 & '.xls]TRACKING!$B$3="Org"',[20060515.xls]TRACKING!$C$3,0)
As I said, I'm not even sure if this is possible, but if so, it would alleviate a lot of modifications per template use.
I have a template that I use weekly and it summarizes category data from other spreadsheets during that week's time. Since the template is doing a week at a time, I have columns for the dates that increment based on the first date entered. The files that it references are directly tied to the dates, ie, 20060515. Under each date is summary information being pulled from the other spreadsheets, so in the case of 20060515, it is pulling from 20060515.xls within the same directory. An example part of one of the summary formulas looks like this:
IF([20060515.xls]TRACKING!$B$3="Org",[20060515.xls]TRACKING!$C$3,0)
I am wanting this to be dynamically based off the date so it will automatically know which files to look in because this is a template, so idealy, it would be something along the lines of (presuming B2 had the value: 20060515):
IF('[' & B2 & '.xls]TRACKING!$B$3="Org"',[20060515.xls]TRACKING!$C$3,0)
As I said, I'm not even sure if this is possible, but if so, it would alleviate a lot of modifications per template use.