Hi ,
Why is my CrossTab Query giving me a data type mismatch error?
here is the SQL
Thanks,
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts
Why is my CrossTab Query giving me a data type mismatch error?
here is the SQL
Code:
TRANSFORM Sum(Format([Cnt],"Fixed")) AS Expr1
SELECT rptOfficers.Ord, rptOfficers.Cat, Sum(rptOfficers.Cnt) AS Total
FROM rptOfficers RIGHT JOIN rptAlias ON rptOfficers.Alias = rptAlias.Alias
GROUP BY rptOfficers.Ord, rptOfficers.Cat
ORDER BY rptOfficers.Ord
PIVOT rptAlias.Alias;
Thanks,
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts