I'm trying to pull data from the first tab, which collects data from a Google Form (regarding school subjects).
In the second tab, I have a dropdown menu in cell A3 with all subjects.
Say I choose "History" in my dropdown.
I have tried this which works:=QUERY('Form responses 1'!A2:O110, "Select B, C, D, E, F where K = '"&A3&"' OR L = '"&A3&"' OR M = '"&A3&"'")
But, when I change the subject in the dropdown to "Geography", which can be found in L-column, it returns the #N/A.
So, the issue is that the query only looks at K every time.
What am I doing wrong?