G
Gale Coleman
Hello all,
Using Access 2000 on Windows 2000 pro.
I have a crosstab query based on another query with a parameter of Between
[enter beginning opening date] And [enter ending opening date]. When I run
the crosstab query it comes out just fine. When I put the crosstab query
into a report and run it, it gives me the following error: The Microsoft
Jet Database Engine does not recognize " as a valid field name or
expression.
I have read some things that tell me it is the crosstab query, but I am at a
loss as to what to do to fix it when it gets into the report.
Any suggestions?
Here is the sequel to the crosstab query:
TRANSFORM Count(qMedicarePlanD.Casenum) AS CountOfCasenum
SELECT qMedicarePlanD.ApplicationType, Count(qMedicarePlanD.Casenum) AS
[Total Of Casenum]
FROM qMedicarePlanD
GROUP BY qMedicarePlanD.ApplicationType
PIVOT qMedicarePlanD.Completion;
Here is the sequel to the query qMedicarePlanD:
PARAMETERS [Enter Beginning Opening Date] DateTime, [Enter Ending Opening
Date] DateTime;
SELECT zMedicarePartD.Casenum, zMedicarePartD.Completion,
zMedicarePartD.ApplicationType, zMedicarePartD.Notes
FROM zMedicarePartD INNER JOIN CLIENTSW ON zMedicarePartD.Casenum =
CLIENTSW.CASENUM
WHERE (((CLIENTSW.DOPEN) Between [enter beginning opening date] And [enter
ending opening date]))
GROUP BY zMedicarePartD.Casenum, zMedicarePartD.Completion,
zMedicarePartD.ApplicationType, zMedicarePartD.Notes;
Nothing to complicated, but it really "breaks" the report.
Thanks all,
gmc
Using Access 2000 on Windows 2000 pro.
I have a crosstab query based on another query with a parameter of Between
[enter beginning opening date] And [enter ending opening date]. When I run
the crosstab query it comes out just fine. When I put the crosstab query
into a report and run it, it gives me the following error: The Microsoft
Jet Database Engine does not recognize " as a valid field name or
expression.
I have read some things that tell me it is the crosstab query, but I am at a
loss as to what to do to fix it when it gets into the report.
Any suggestions?
Here is the sequel to the crosstab query:
TRANSFORM Count(qMedicarePlanD.Casenum) AS CountOfCasenum
SELECT qMedicarePlanD.ApplicationType, Count(qMedicarePlanD.Casenum) AS
[Total Of Casenum]
FROM qMedicarePlanD
GROUP BY qMedicarePlanD.ApplicationType
PIVOT qMedicarePlanD.Completion;
Here is the sequel to the query qMedicarePlanD:
PARAMETERS [Enter Beginning Opening Date] DateTime, [Enter Ending Opening
Date] DateTime;
SELECT zMedicarePartD.Casenum, zMedicarePartD.Completion,
zMedicarePartD.ApplicationType, zMedicarePartD.Notes
FROM zMedicarePartD INNER JOIN CLIENTSW ON zMedicarePartD.Casenum =
CLIENTSW.CASENUM
WHERE (((CLIENTSW.DOPEN) Between [enter beginning opening date] And [enter
ending opening date]))
GROUP BY zMedicarePartD.Casenum, zMedicarePartD.Completion,
zMedicarePartD.ApplicationType, zMedicarePartD.Notes;
Nothing to complicated, but it really "breaks" the report.
Thanks all,
gmc