Hi folks,
I have this crosstabe query :
Where InClass is a "yes/no" field. The columns it produces are -1 and 0, and I want to change this.
I tried in column heading but it gives me an error message "Type mismatching". I think it only accepts numeric values.
What can I do to change my column headings to text instead?
I have this crosstabe query :
Code:
TRANSFORM Count([Activity Attendance].[Activity ID]) AS [CountOfActivity ID]
SELECT [Activity Attendance].AttendanceDate
FROM [Activity Attendance]
GROUP BY [Activity Attendance].AttendanceDate
PIVOT [Activity Attendance].InClass;
Where InClass is a "yes/no" field. The columns it produces are -1 and 0, and I want to change this.
I tried in column heading but it gives me an error message "Type mismatching". I think it only accepts numeric values.
What can I do to change my column headings to text instead?