Hi,
My this query I created is presenting department wize employees including all nationalities.
TRANSFORM Count(T_JobOffer.[CDept]) AS CountOfCDept
SELECT T_JobOffer.[CDept]
FROM T_JobOffer
GROUP BY T_JobOffer.[CDept]
ORDER BY T_JobOffer.[CDept]
PIVOT T_JobOffer.[CNationality];
There is a...