To Include Count In Crosstab Query

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top