flaviooooo
Programmer
Hey,
I have a list of usernames as such:
John Davies
Elmer McDonald
Alberto Vicenzo
...
Every month, excel workbooks are created via a VBA macro that have the names of these users. So we have a book called John Davies.xls, Elmer McDonald.xls etc etc
Now: in each of these sheets, several calculations are done and a total amount is listed at the bottom.
The objective now is to add this total amount into the basic list of all usernames.
If I type it in completely, it works as follows:
='[201104_JOHN DAVIES.xls]Sheet1'!$T$39
But since it is quite an extensive list (that might change over time), I would prefer to have a formula that would check the cell where the name is filled in... and use that field to look for the filename. Unfortunately, this gives me a #REF error:
='[201104_" & B2 & ".xls]Sheet1'!$T$39
Any ideas on how to accomplish this?
thanks!
I have a list of usernames as such:
John Davies
Elmer McDonald
Alberto Vicenzo
...
Every month, excel workbooks are created via a VBA macro that have the names of these users. So we have a book called John Davies.xls, Elmer McDonald.xls etc etc
Now: in each of these sheets, several calculations are done and a total amount is listed at the bottom.
The objective now is to add this total amount into the basic list of all usernames.
If I type it in completely, it works as follows:
='[201104_JOHN DAVIES.xls]Sheet1'!$T$39
But since it is quite an extensive list (that might change over time), I would prefer to have a formula that would check the cell where the name is filled in... and use that field to look for the filename. Unfortunately, this gives me a #REF error:
='[201104_" & B2 & ".xls]Sheet1'!$T$39
Any ideas on how to accomplish this?
thanks!