I have a crosstab query that I am using on a report.
So the fields of the query whaen I run it are
DateResolutionS ent By Quarter, -1 ,0. So my problem is, when I filter by quarter, some of my crosstabs no longer have the -1 collumn, and when I open the report it says it does not recognize Access1.[-1] as a field name or expression. Is there a way to supress this so I don't have the error?
Code:
TRANSFORM Count(NonMedicaidQuarterReport.Access1) AS CountOfAccess1 SELECT NonMedicaidQuarterReport.[DateResolutionSent By Quarter] FROM NonMedicaidQuarterReport GROUP BY NonMedicaidQuarterReport.[DateResolutionSent By Quarter] PIVOT NonMedicaidQuarterReport.Access1;
DateResolutionS ent By Quarter, -1 ,0. So my problem is, when I filter by quarter, some of my crosstabs no longer have the -1 collumn, and when I open the report it says it does not recognize Access1.[-1] as a field name or expression. Is there a way to supress this so I don't have the error?
Comment