I have 4 fields in my table, Employee, InputDate, Volume, and Hours. I want to display the Employees down the left column, the InputDate across the top and then Volume divided by Hours in the middle. I tried this:
TRANSFORM (Closures.[10Volume]/Closures.[10Hours]) AS AvgOf10Volume
SELECT Closures.IDRS
FROM Closures
GROUP BY Closures.IDRS, Closures.[10Volume]/Closures.[10Hours]
PIVOT Format([InputDate],"Short Date");
But that is giving me multiple instances of each employee name with a lot of empty cells. Thoughts?
TRANSFORM (Closures.[10Volume]/Closures.[10Hours]) AS AvgOf10Volume
SELECT Closures.IDRS
FROM Closures
GROUP BY Closures.IDRS, Closures.[10Volume]/Closures.[10Hours]
PIVOT Format([InputDate],"Short Date");
But that is giving me multiple instances of each employee name with a lot of empty cells. Thoughts?