Hey guys,
Got a real brain teaser for the hardcore excel users.
Recently I have been using an INDIRECT function:
As you can see I have already started to make my worksheet functions more dynamic by using cell references. In the above example rather than hardcode the worksheet name I have used a string "WO" which means weekly order followed by the "&" symbol to concatenate with the a cell reference meaning the value that is located in the cell "E1". Which in this case happens to be a 1 for the moment. Now for my dilema.
I am trying to get the last part of this to be a cell reference as well. I no longer wish to hardcode the !C8, but instead make this a cell reference as well. In this case the value of "A8"
Someone else suggested that I might instead use an INDEX function instead, but I have yet to come up with the correct way to concatenate it all together. Here is what I have so far:
Unfortunately the above index function does not work.
all help is appreciated.
Ty
Got a real brain teaser for the hardcore excel users.
Recently I have been using an INDIRECT function:
Code:
INDIRECT("'"&("WO"&$E$1)&"'!C8")
As you can see I have already started to make my worksheet functions more dynamic by using cell references. In the above example rather than hardcode the worksheet name I have used a string "WO" which means weekly order followed by the "&" symbol to concatenate with the a cell reference meaning the value that is located in the cell "E1". Which in this case happens to be a 1 for the moment. Now for my dilema.
I am trying to get the last part of this to be a cell reference as well. I no longer wish to hardcode the !C8, but instead make this a cell reference as well. In this case the value of "A8"
Someone else suggested that I might instead use an INDEX function instead, but I have yet to come up with the correct way to concatenate it all together. Here is what I have so far:
Code:
INDEX(("'"&("WO"&$E$1)&"'")&!C7:C107"&,(A8))
Unfortunately the above index function does not work.
all help is appreciated.
Ty