L
LMB
Access 2000. I made a crosstab query without a wizard for the first time (isn't that great?!). It all looks fine but there is one column where the column name is <> and there is no data in the column. Here is my sql just in case it helps you. I use the query grid to make my querys not the sql view though.
TRANSFORM Max(TBLTestsAndCerts.TestsAndCertsTypeExpDate) AS MaxOfTestsAndCertsTypeExpDate
SELECT qryNameAndSeniority.Name
FROM TBLTestsAndCertsTypes RIGHT JOIN (qryNameAndSeniority LEFT JOIN TBLTestsAndCerts ON qryNameAndSeniority.strEmployeeID = TBLTestsAndCerts.EmployeeID) ON TBLTestsAndCertsTypes.TestsAndCertsTypesID = TBLTestsAndCerts.TestsAndCertsTypeID
GROUP BY qryNameAndSeniority.strLastName, qryNameAndSeniority.Name
ORDER BY qryNameAndSeniority.strLastName
PIVOT TBLTestsAndCertsTypes.TestAndCertsType;
Anybody know what's wrong?
Thanks,
Linda
TRANSFORM Max(TBLTestsAndCerts.TestsAndCertsTypeExpDate) AS MaxOfTestsAndCertsTypeExpDate
SELECT qryNameAndSeniority.Name
FROM TBLTestsAndCertsTypes RIGHT JOIN (qryNameAndSeniority LEFT JOIN TBLTestsAndCerts ON qryNameAndSeniority.strEmployeeID = TBLTestsAndCerts.EmployeeID) ON TBLTestsAndCertsTypes.TestsAndCertsTypesID = TBLTestsAndCerts.TestsAndCertsTypeID
GROUP BY qryNameAndSeniority.strLastName, qryNameAndSeniority.Name
ORDER BY qryNameAndSeniority.strLastName
PIVOT TBLTestsAndCertsTypes.TestAndCertsType;
Anybody know what's wrong?
Thanks,
Linda