I have five sheets:
- Overview
- Invoice
- 20151017
- 20151019
- 20151202
Cell N1 on 'Overview' contains '20151017'. I'd like to use the INDIRECT function to call N1!J3 (so 20151017!J3) to the cell N3 on Overview. This sort of works:
=INDIRECT("'"&N$1&"'"&"!J3")
That is, of course, until I try to extend it down into N4. When it was written &N1& and copied down, N1 would become N2 etc etc. But J3 never changes.
How do I go about addressing that for the next 56 rows down and 2 across?