Here is my example Sheet.
I have a list of available plays to read, with the number of reads thus far and the disparity in their scores in the named range "Available" (A3:C1001).
I also have a list of plays I have already read in the named range "Assessed" (E3:E1001) and a filtered list of the titles available to me that I have not already read in the named range "Mine" (G3:G1001).
I am trying to generate a QUERY that pulls all the plays I am eligible to read with their number of reads and disparity scores.
Currently, I am trying
=Query(Available, "Select A, B, C Where A Matches '"&{Mine}&"'") but that only produces the first in the list, and I can't seem to figure out the next step. This should be fairly simple, but I am running headfirst into a wall with it. Can anyone please help?