To Include Count In Crosstab Query

  • Thread starter Thread starter zyus
  • Start date Start date
Z

zyus

My query

TRANSFORM Sum([Tbl-SKS].NET_BAL) AS SumOfNET_BAL
SELECT [Tbl-SKS].BRNCD, Sum([Tbl-SKS].NET_BAL) AS [Total Of NET_BAL]
FROM [Tbl-SKS]
GROUP BY [Tbl-SKS].BRNCD
PIVOT [Tbl-SKS].CATDESC;

I want to include another field [ACNO] in the same table that i want to
count beside my netbal field with the rest of grouping remain the same as
above.

Thanks
 
Back
Top