I have need to enter a value that can vary. It is the last row in a column. I add this variable cell to A1. The value is $L$9001
I have the following formula: =VLOOKUP($H4,'week ending 04JUL'!$A$1:$L$9001,3,FALSE)
In A1 I have the value $L$9001. This figure may change hence why I need to add it in and can't use a hardcoded value.
In B1 to test I get the correct output I have: =INDIRECT("A1") This returns $L$9001 as expected
When I try: =VLOOKUP($H4,'week ending 04JUL'!$A$1:INDIRECT("A1"),3,FALSE) This returns a #VALUE error.
So I need the value in A1 to replace $L$9001 portion of the formula. Any help is greatly appreciated.