ive got a crosstab query to count the number of completed jobs grouped on age. I was getting an error invalid use of null. So did a bit digging around found the Nz function but im still getting the error. Does anyone have any ideas?
TRANSFORM Count(Nz([FBR])=0) AS [The Value]
SELECT qryNR.Fuel, Count(qryNR.FBR) AS Total
FROM qryNR
GROUP BY qryNR.Fuel
PIVOT qryNR.Age_Band;
"Children are smarter than any of us. Know how I know that? I don't know one child with a full time job and children."...Bill Hicks
TRANSFORM Count(Nz([FBR])=0) AS [The Value]
SELECT qryNR.Fuel, Count(qryNR.FBR) AS Total
FROM qryNR
GROUP BY qryNR.Fuel
PIVOT qryNR.Age_Band;
"Children are smarter than any of us. Know how I know that? I don't know one child with a full time job and children."...Bill Hicks