0

The formula works when I type manually, but when I try to get the references of the tabs inside the cells it doesn't work, can someone help me?

https://docs.google.com/spreadsheets/d/1KVyLhBRamHyjq_DD92X78OfBvzh0bUDTnf_WTojTnpg/edit#gid=2097694625

enter image description here

I tried to put it like this, but it didn't work.

enter image description here

1 Answers1

0

try:

=QUERY({REDUCE({"","","","","","","","",""}, 
 FILTER(L5:L, L5:L<>""), LAMBDA(a, b, 
 {a; IFERROR(INDIRECT(b&"!G1:O"), {"","","","","","","","",""})}))}, 
 "where not Col8 is null", )

where L5:L is your:

enter image description here

see: https://stackoverflow.com/a/74483215/5632629


UPDATE:

=QUERY({REDUCE({""\""\""\""\""\""\""\""\""}; 
 FILTER(SHEETSNAME(); REGEXMATCH(SHEETSNAME(); "sin")); LAMBDA(a; b; 
 {a; IFERROR(INDIRECT(b&"!G1:O"); {""\""\""\""\""\""\""\""\""})}))}; 
 "where not Col8 is null"; )

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124