I have a SQL Statement, within the statement I have a fairly simple conidtion as follows:
WHERE (((Work.date)>=[Forms]![Monthly QC Report]![BeginningDate] And (Work.date)<=[Forms]![Monthly QC Report]![EndDate]));
This should give me an output of data not only between the the range of dates but include the date as well.
My problem is that the <=[EndDate] does not output the = to date. This works fine for the [beginningdate].
Can anyone help w/ why I cannot get an the output to include records = to the [EndDate] I can modify the statement to only output records = to the [EndDate], and still nothing. I have verified the format of the [Enddate] by outputting the statement to another feild and it appears to match exactly.
Thanks in advance for your time and help.
Jeff
WHERE (((Work.date)>=[Forms]![Monthly QC Report]![BeginningDate] And (Work.date)<=[Forms]![Monthly QC Report]![EndDate]));
This should give me an output of data not only between the the range of dates but include the date as well.
My problem is that the <=[EndDate] does not output the = to date. This works fine for the [beginningdate].
Can anyone help w/ why I cannot get an the output to include records = to the [EndDate] I can modify the statement to only output records = to the [EndDate], and still nothing. I have verified the format of the [Enddate] by outputting the statement to another feild and it appears to match exactly.
Thanks in advance for your time and help.
Jeff