Cross Tab Web Report in Access 2010

lodhi1978

Registered User.
Local time
Today, 22:33
Joined
Apr 15, 2014
Messages
10
Hi All,

I want to create a cross tab web report in Access 2010,

The query is below

Code:
TRANSFORM Count(AssetsExtended.Item) AS CountOfItem
SELECT Year([RetiredDate]) AS [Year]
FROM AssetsExtended
WHERE (((AssetsExtended.RetiredDate) Is Not Null))
GROUP BY Year([RetiredDate])
ORDER BY Year([RetiredDate])
PIVOT Month([RetiredDate]);


Thanks,
 

Users who are viewing this thread

Back
Top Bottom