This is the query that I have:
TRANSFORM(Count[Client Demographics].CLTCODE AS [THE VALUE]
SELECT [Status Code].Status, Count ClientDemographics].CLTCODE AS TOTAL
FROM [Status Code] INNER JOIN [Gender Codes]INNER JOIN [Client Demographics]ON [Gender Codes].SEX_M_F=[Client Demographics].Gender)ON [Status Code].Code = [Client Demographics].Status
PIVOT [Gender Codes].Sex;
Question: Can I total the columns(female),(male)and (total) AND display the "Row total" as a percentage of Column total"?
TRANSFORM(Count[Client Demographics].CLTCODE AS [THE VALUE]
SELECT [Status Code].Status, Count ClientDemographics].CLTCODE AS TOTAL
FROM [Status Code] INNER JOIN [Gender Codes]INNER JOIN [Client Demographics]ON [Gender Codes].SEX_M_F=[Client Demographics].Gender)ON [Status Code].Code = [Client Demographics].Status
PIVOT [Gender Codes].Sex;
Question: Can I total the columns(female),(male)and (total) AND display the "Row total" as a percentage of Column total"?