C
chris
When I prompt for the value of now() and now()+1, the query results are what
I would expect. When the values of now() and now()+1 are generated via the
system, the query results are "inaccurate". Why?
Below is the simple query, prompting for parameter values, which returns
expected results. Thanks in advance... Chris
SELECT (Count(WorkOrd.[WO Type])) AS [Projects Issued]
FROM WorkOrd
WHERE (((WorkOrd.[WO Type])="Projects") AND ((WorkOrd.[WO Date]) Between
[Now()] And [Now()+1]));
I would expect. When the values of now() and now()+1 are generated via the
system, the query results are "inaccurate". Why?
Below is the simple query, prompting for parameter values, which returns
expected results. Thanks in advance... Chris
SELECT (Count(WorkOrd.[WO Type])) AS [Projects Issued]
FROM WorkOrd
WHERE (((WorkOrd.[WO Type])="Projects") AND ((WorkOrd.[WO Date]) Between
[Now()] And [Now()+1]));