N
Nick
I have posted before but was unable to access link.
I have a report using a crosstab. How do I post the FY in the report header.
TRANSFORM Count(DRIVELOG.[Driving Observation]) AS [CountOfDriving
Observation1]
SELECT Employees.SSI, [Last Name] & ", " & [first name] AS Expr2,
DRIVELOG.[Driving Observation], Employees.Craft, Count(DRIVELOG.[Driving
Observation]) AS [Total Of Driving Observation]
FROM DRIVELOG RIGHT JOIN Employees ON DRIVELOG.SSiNumber = Employees.SSI
WHERE (((Employees.Craft) Like "city carrier" Or (Employees.Craft) Like
"rural carrier" Or (Employees.Craft) Like "ptF" Or (Employees.Craft) Like
"TE"))
GROUP BY Employees.SSI, [Last Name] & ", " & [first name], DRIVELOG.[Driving
Observation], Employees.Craft, DRIVELOG.[Driving Observation], Employees.Craft
PIVOT Format([ActionDate],"mmm") In
("Oct","Nov","Dec","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep");
I have a report using a crosstab. How do I post the FY in the report header.
TRANSFORM Count(DRIVELOG.[Driving Observation]) AS [CountOfDriving
Observation1]
SELECT Employees.SSI, [Last Name] & ", " & [first name] AS Expr2,
DRIVELOG.[Driving Observation], Employees.Craft, Count(DRIVELOG.[Driving
Observation]) AS [Total Of Driving Observation]
FROM DRIVELOG RIGHT JOIN Employees ON DRIVELOG.SSiNumber = Employees.SSI
WHERE (((Employees.Craft) Like "city carrier" Or (Employees.Craft) Like
"rural carrier" Or (Employees.Craft) Like "ptF" Or (Employees.Craft) Like
"TE"))
GROUP BY Employees.SSI, [Last Name] & ", " & [first name], DRIVELOG.[Driving
Observation], Employees.Craft, DRIVELOG.[Driving Observation], Employees.Craft
PIVOT Format([ActionDate],"mmm") In
("Oct","Nov","Dec","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep");