Is there a formula that will allow me to use a range of sheet ids to stack import ranges from multiple sheets?
=importrange(A2:A,"Sheet1!A:F") in the example is meant to be illustrative of what I'm trying to achieve.
I'm aware I can use
={IMPORTRANGE("id1","Sheet1!A:F");IMPORTRANGE("id2","Sheet1!A:F"); IMPORTRANGE("id3","Sheet1!A:F")}
however, what I'm hoping to achieve is a growing list of ids in column A that when a new id is entered (and after creating a method for allowing permissions) will add on and expand the stack of importranges.
The closest I got was this but I'm getting a space on either side of the id and wasn't able to progress from there.