Poll
Question:
Group By Date ( Year Month) in Cognos 8 Report Studio
Option 1: ?
votes: 0
Option 2: ?
votes: 1
I have a date field, it's format in DB like this 'mm/dd/yyyy'. How do I group by by YEAR -Month in Report Studio?
Hi,
Add two query calculations
extract([yourdateitem],year)
extract([yourdateitem],month)
Then group on these calculations.
Regards,
MF.
:D Great it works. Thank you!