In a Google Sheet there are two pages with correlated data. On a third page, how can I get a list of all user names that are associated with an account that has a subscription_type=1?
Unfortunately, the QUERY function can only work on one sheet at a time.
try:
=FILTER(A:A, IFNA(VLOOKUP(B:B, Page2!A:B, 2, 0))=1)