JavaToPerlNowVB
Programmer
I have this query and I want to include sum function to calculate the total of a column, I know how to use the sum function is a regular select statement but I am not sure how to add that to this query
PS: PHV, Can you give it a shot
thanks for all the help
Code:
TRANSFORM Count(OBJECTID) AS CountOfOBJECTID
SELECT DatePart("yyyy",[INSPECTDATE]) AS InspectionDate
FROM GISADM_GNDLINEFACILITYMAINTPOLE
GROUP BY DatePart("yyyy",[INSPECTDATE])
ORDER BY DatePart("yyyy",[INSPECTDATE])
PIVOT MAINTACTION;
PS: PHV, Can you give it a shot
thanks for all the help