F
Fleone
I have a query that asks for a start date and end date as parameters.
Each time I run this query I have to enter the start date and the end date 4
times before it will run. It is not within a form, just a simple query.
Here is the SQL statement:
SELECT tbl_sales.[Email Address], tbl_email.[serial number],
tbl_sales.[Trans Date]
FROM tbl_sales INNER JOIN tbl_email ON tbl_sales.[Email Address] =
tbl_email.[client email]
WHERE (((tbl_email.[serial number]) Like "123#U*") AND ((tbl_sales.[Trans
Date]) Between [StartDate] And [EndDate]));
This is Access 2007 and I would REALLY love to understand why this happens.
I have gone so far as to create a new query and it works "normally" (asking
for start date and end date just once) one time and if I run it again,
boom...I have to enter it 4 times.
Thanks for any advice or solutions!
Each time I run this query I have to enter the start date and the end date 4
times before it will run. It is not within a form, just a simple query.
Here is the SQL statement:
SELECT tbl_sales.[Email Address], tbl_email.[serial number],
tbl_sales.[Trans Date]
FROM tbl_sales INNER JOIN tbl_email ON tbl_sales.[Email Address] =
tbl_email.[client email]
WHERE (((tbl_email.[serial number]) Like "123#U*") AND ((tbl_sales.[Trans
Date]) Between [StartDate] And [EndDate]));
This is Access 2007 and I would REALLY love to understand why this happens.
I have gone so far as to create a new query and it works "normally" (asking
for start date and end date just once) one time and if I run it again,
boom...I have to enter it 4 times.
Thanks for any advice or solutions!