Hi
This should be simple but I am finding it baffling
The formula that works:
I get the result 12. My understanding is that this is the row which the value of B4 on the current sheet is found in column E on the specified (different) sheet.
However I would like to use a cell reference on the current sheet to determine the sheet on which to look by using
It gives me a #VALUE error and I don’t know why.
Stripping out the Concatenate part of the formula it gives me, I believe, the correct format i.e.
Gives me '\\network address\folder\[file.xlsx]D4 Text'!$E:$E where "D4 Text" is the sheet name, which matches the format in the formula above.
Any enlightenment gratefully received
Thanks
Paul
This should be simple but I am finding it baffling
The formula that works:
Code:
=Match(B4,'\\network address\folder\[file.xlsx]sheet'!$E:$E,)
I get the result 12. My understanding is that this is the row which the value of B4 on the current sheet is found in column E on the specified (different) sheet.
However I would like to use a cell reference on the current sheet to determine the sheet on which to look by using
Code:
=Match(B4,Concatenate("'\\network address\folder\[file.xlsx]",D4&" Text","'!",”$E:$E”),)
It gives me a #VALUE error and I don’t know why.
Stripping out the Concatenate part of the formula it gives me, I believe, the correct format i.e.
Code:
=Concatenate("'\\network address\folder\[file.xlsx]",D4&" Text","'!",”$E:$E”),)
Gives me '\\network address\folder\[file.xlsx]D4 Text'!$E:$E where "D4 Text" is the sheet name, which matches the format in the formula above.
Any enlightenment gratefully received
Thanks
Paul