Here is what I get:
TRANSFORM Count([Master Recommendation Table].[Issue Reference Number]) AS
[CountOfIssue Reference Number]
SELECT [Master Recommendation Table].[Audit Group Name]
FROM [Master Recommendation Table]
WHERE ((([Master Recommendation Table].[Issue Status Name])="open"))
GROUP BY [Master Recommendation Table].[Audit Group Name], [Master
Recommendation Table].[Issue Status Name]
PIVOT [Master Recommendation Table].[Report Rating];
TRANSFORM Count([Master Recommendation Table].[Issue Reference Number]) AS
[CountOfIssue Reference Number]
SELECT [Master Recommendation Table].[Audit Group Name]
FROM [Master Recommendation Table]
WHERE ((([Master Recommendation Table].[Issue Status Name])="open"))
GROUP BY [Master Recommendation Table].[Audit Group Name], [Master
Recommendation Table].[Issue Status Name]
PIVOT Nz([Report Rating],"No Rating");
I get similar number, but in different columns when I view the results from
these two.
Biggles
[MVP] S.Clark said:
Post the SQL.
--
Steve Clark, Access MVP
FMS, Inc.
www.fmsinc.com/consulting
Biggles said:
I am trying to develop a cross tab query - the first time I tried it, I got a
column with the <>. I used the NZ function as the column name -
NZ([field],"new heading") - but when I do that, it makes some of the values
move columns, then if I try to arrange the column headings in the query
properties, access dumps them all into one column. Any ideas?