When I entered the StartDate
of anything greater than 07/16/1999 in this
select query qryCrosstabTotalsDated (not a totals query, a regular select query)
I'm getting an error that reads:
The Microsoft Jet Database Engine doe snot recognize ''as a valid field name or expression.
qryCrosstabTotalsDated Raw SQL is:
SELECT qryCrosstabReportDated.TITLE,
IIf([CT] Is Null,0,[CT]) AS Connecticut,
IIf([NH] Is Null,0,[NH]) AS [New Hampshire],
IIf([VT] Is Null,0,[VT]) AS Vermont
FROM qryCrosstabReportDated;
qryCrosstabReportDated Raw SQL(this runs fine when I enter StartDate > 07/16/1999) is:
PARAMETERS [StartDate] DateTime, [EndDate] DateTime;
TRANSFORM Count(tblCredentials.CR_ID) AS CountOfCR_ID
SELECT NRC_VAL.TITLE
FROM tblCredentials INNER JOIN NRC_VAL ON tblCredentials.CR_CODE = NRC_VAL.TITLE_NUM
WHERE (((tblCredentials.CR_DATE) Between [StartDate] And [EndDate]))
GROUP BY NRC_VAL.TITLE
PIVOT tblCredentials.CRSTATE;
When running qryCrosstabReportDated there is a column header of <> since no CRSTATE appeared, but values did appear. Is that causing the problem?
How can I check if there is something wrong with how the data was inputted after 07/16/1999?
There is an input mask of 99/99/00;0;_
Is that causing the problem?
Quite perplexed?? Thanks for anything insight.
of anything greater than 07/16/1999 in this
select query qryCrosstabTotalsDated (not a totals query, a regular select query)
I'm getting an error that reads:
The Microsoft Jet Database Engine doe snot recognize ''as a valid field name or expression.
qryCrosstabTotalsDated Raw SQL is:
SELECT qryCrosstabReportDated.TITLE,
IIf([CT] Is Null,0,[CT]) AS Connecticut,
IIf([NH] Is Null,0,[NH]) AS [New Hampshire],
IIf([VT] Is Null,0,[VT]) AS Vermont
FROM qryCrosstabReportDated;
qryCrosstabReportDated Raw SQL(this runs fine when I enter StartDate > 07/16/1999) is:
PARAMETERS [StartDate] DateTime, [EndDate] DateTime;
TRANSFORM Count(tblCredentials.CR_ID) AS CountOfCR_ID
SELECT NRC_VAL.TITLE
FROM tblCredentials INNER JOIN NRC_VAL ON tblCredentials.CR_CODE = NRC_VAL.TITLE_NUM
WHERE (((tblCredentials.CR_DATE) Between [StartDate] And [EndDate]))
GROUP BY NRC_VAL.TITLE
PIVOT tblCredentials.CRSTATE;
When running qryCrosstabReportDated there is a column header of <> since no CRSTATE appeared, but values did appear. Is that causing the problem?
How can I check if there is something wrong with how the data was inputted after 07/16/1999?
There is an input mask of 99/99/00;0;_
Is that causing the problem?
Quite perplexed?? Thanks for anything insight.