Hello everybody,
i have a question about an excel cell link.
i want to check from a central workbook, if a specific cell in various different workbook is filled.
if i "hard" link the cells in my central workbook with the other workbooks like
=if('\\server\folder\subfolder\[filename.xlsx]Worksheetname'!A1="";1;-1)
it will work properly.
But i would like to have the same result by concatenating the condition in the if-clause from different cells in the central workbook like
Cell b1: "\\server\folder\subfolder\[filename.xlsx]Worksheetname"
Cell b2: "A1"
Cell b3: =if("'"&B1&"'!"&B2="";1;-1)
But this doesnt work!
I could use the indirect function, but that means i have to open all workbooks that i would to check. And these are a lot. Why does the upper way work properly and the second one does not?
Could anyone explain it to me or help me to find a solution?
Thanks a lot!!!
i have a question about an excel cell link.
i want to check from a central workbook, if a specific cell in various different workbook is filled.
if i "hard" link the cells in my central workbook with the other workbooks like
=if('\\server\folder\subfolder\[filename.xlsx]Worksheetname'!A1="";1;-1)
it will work properly.
But i would like to have the same result by concatenating the condition in the if-clause from different cells in the central workbook like
Cell b1: "\\server\folder\subfolder\[filename.xlsx]Worksheetname"
Cell b2: "A1"
Cell b3: =if("'"&B1&"'!"&B2="";1;-1)
But this doesnt work!
I could use the indirect function, but that means i have to open all workbooks that i would to check. And these are a lot. Why does the upper way work properly and the second one does not?
Could anyone explain it to me or help me to find a solution?
Thanks a lot!!!