https://docs.google.com/spreadsheets/d/10oXUIaL3MXqpJX8YkpCyf7l1q_h_bD6CdkGVRO6bbYE/edit?usp=sharing
I am trying to create a "Month Viewer" tab that queries another sheet (tables) and filters by month from the dropdown list, and also by month week. This is so monthly results are broken into weeks.
Here is my current formula.
=QUERY(TABLES!A4:N368,"Select * Where M = '1' and N = '"&C2&"' ",1)
While it returns data, it doesn't actually appear to filter it by month (N='"&C2&"), nor by week (M='1').
Any suggestions are appreciated.