I have a problem with the following bit of google sheet work. I have a table with the names of various tabs that contain data I want to sum up using an INDIRECT within an ARRAYFORMULA:
|sheet3|more data|other stuff|sheet77|sheet6|
Each sheet contains a couple hundred rows, and I don't know how many sheets I will need to INDIRECT to.
I'm then using the following formula to add up the data from a specific cell within each of the named sheets:
=arrayformula(SUM(INDIRECT("'"&a1:a99&"'!a1")))
However this only gives me data from the first sheet listed in the list ("sheet3" in the example) and none of the others ("more data", "other stuff", etc...). Is there a way to use INDIRECT in this way to point to the cell in all those tabs?