J
Jeffrey Marks
I've never done a crosstab where I combine 2 fields into the column heading.. The query is as follows:
TRANSFORM Last(LMMI_Assessment.TestScore) AS TestScore
SELECT LMMI_Assessment.StudentNumber, Max(LMMI_Assessment.TestingDate) AS MaxTestingDate
FROM LMMI_Assessment
GROUP BY LMMI_Assessment.StudentNumber
PIVOT LMMI_Assessment.[AssessmentTestName] & "-" & AssessmentPartName;
When I don't name the column headings, the results show as "3rd Ach-Math", 4th Ach-Reading", etc. However, when I try to name the fields as column headings in the properties box (as "3rd Ach-Math" etc) so that I can use thesefields in another query, I get empty columns. Currently the 2 fields are 255 characters -- does that make a difference?
TRANSFORM Last(LMMI_Assessment.TestScore) AS TestScore
SELECT LMMI_Assessment.StudentNumber, Max(LMMI_Assessment.TestingDate) AS MaxTestingDate
FROM LMMI_Assessment
GROUP BY LMMI_Assessment.StudentNumber
PIVOT LMMI_Assessment.[AssessmentTestName] & "-" & AssessmentPartName;
When I don't name the column headings, the results show as "3rd Ach-Math", 4th Ach-Reading", etc. However, when I try to name the fields as column headings in the properties box (as "3rd Ach-Math" etc) so that I can use thesefields in another query, I get empty columns. Currently the 2 fields are 255 characters -- does that make a difference?