Hi all, I've got a working offset index function to return a value from a specific tab right now, but I need to go one step further and use indirect to dynamically reference tabs, as there' are about 200 of them and this would be much quicker than find+replace. I can get the indirect function to work for just a basic sum, as follows (note, this is not what I wanted but rather just to check if it worked re:formatting etc):
=SUM(INDIRECT(A4&"!B11:B12"))
But now I need to work just the indirect part, not the sum, into this function:
=IF(ISNA(OFFSET(INDEX('6204'!4:4,1,MATCH($B$2,'6204'!4:4,0)),-2,3,)),0,OFFSET(INDEX('6204'!4:4,1,MATCH($B$2,'6204'!4:4,0)),-2,3,))
where the tab is 6204, and that number is referenced from A4. How do I do this? It might be helpful if somebody could explain the syntax too, in that the only part I'm getting lost on here is the ", ', and & that all the google results bring up but do differently.
=SUM(INDIRECT(A4&"!B11:B12"))
But now I need to work just the indirect part, not the sum, into this function:
=IF(ISNA(OFFSET(INDEX('6204'!4:4,1,MATCH($B$2,'6204'!4:4,0)),-2,3,)),0,OFFSET(INDEX('6204'!4:4,1,MATCH($B$2,'6204'!4:4,0)),-2,3,))
where the tab is 6204, and that number is referenced from A4. How do I do this? It might be helpful if somebody could explain the syntax too, in that the only part I'm getting lost on here is the ", ', and & that all the google results bring up but do differently.