Hello,
Microsoft Access wants to be helpful and change my queries when underlying object (either form or query) does not exist.
For example, if I had a query that did the following...
SELECT FirstName
FROM persons
If the persons table does not exist yet, and I import the query, Access will place an "expr: " in front of FirstName signifying that it cannot find the column. This example table will be created with VBA later.
Is there a way to prevent Access from auto-correcting queries upon import?
Thanks!