Thank God the lounge is back!!!!
Help———–
I am running a cross tab query for a report. At times there is not data in a field and when this happens I get an error. It says sthe MIcrosoft Jet Database engine does not recognise [] as a valid field name or expression. How can I get over this?
This is the query inSQL
TRANSFORM Count(tbl_Applications.ProjectID) AS CountOfProjectID
SELECT tbl_Applications.StaffName, tbl_Applications.Region, Count(tbl_Applications.ProjectID) AS [Total Of ProjectID]
FROM lup_Criteria INNER JOIN tbl_Applications ON lup_Criteria.CriteriaID = tbl_Applications.CriteriaID
WHERE (((tbl_Applications.Status)=”active”) AND ((lup_Criteria.Criteria)=”Caseload”))
GROUP BY tbl_Applications.StaffName, tbl_Applications.Region, lup_Criteria.Criteria
PIVOT tbl_Applications.SupervisionStandard;
Thanks in advance