I have a query in a workbook which SQL statement is:
SELECT field1, field2, field3 FROM table
Now, I would like to update query to filter data using criteria from my workbook as so:
SELECT field1, field2 FROM table WHERE field3 = Sheet1!A1 -- Invalid statement!
How can I achieve this within MS Query (without VBA)?