I'm successfully using the following formula to reference cells in closed Excel workbooks but would like a cleaner look that removes the zeros in columns.
='C:\Users\HP 8200 Elite\Desktop\Performance\[MSA.xlsx]QQQ'!A2
Can I do something like this below?
=IF('C:\Users\HP 8200 Elite\Desktop\Performance\[MSA.xlsx]QQQ'!A2="","",QQQ!A2)
Doesn't seem to work right. I got something similar to work in a workbook that references its own worksheets:
=IF(QQQ!A2="","",QQQ!A2)
Just having problems with a closed file.
=IF(
... then selectQQQ!A2
in the open MSA workbook...="",""
... and so on. That shouldn't give you any errors. – BigBen