79414208

Date: 2025-02-05 09:20:48
Score: 1
Natty:
Report link

You can VSTACK() all your tables, and then use FILTER():

=FILTER(VSTACK(table1,table2,...) , INDEX(VSTACK(table1,table2,...),,2)="N/A", "no N/A")

Table1

Table1

Table2

Table2

Output

REsult

Or slightly easier to maintain:

=LET(_data, VSTACK(table1, table2, ...),
Filter(_data,INDEX(_data,,2)="N/A", "no N/A")

Where 2 would be your column number which could contain N/A.

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Excellor