I've got 2 crosstab queries that both work, but I'd like to combine them together.
The first shows the total time that various vehicles were used for at each base:
TRANSFORM Sum(Cdbl(Nz(M.dtTripTime, 0))) AS SheetTime
SELECT M.lngVehicleID
,Sum(Cdbl(Nz(M.dtTripTime, 0))) AS Total
FROM...