I want to reference another workbook and a specific worksheet which is dependent on some cell values.
This equation works
=\'S:\\Down Time[11-Nov_2013_Downtime T
If you want to do this only by excel formulas, you could modify you formula like this:
=INDIRECT("'S:\Down Time[11-" & A1 & "_2013_Downtime Tracker.xls]" & A2 & "'!$F$12)
In this example it is assumed that the nov-value is in cell A1
and the 30-value is in cell A2
. This formula, however, will only work if the referenced workbooks are open. Otherwise the formula would return a #REF!
error. Only alternative would be to use VBA.