I have a table which has field and Data below:
TransactionNo SellDate Product Amount
001 01/01/01 A 5
002 01/01/01 A 6
003 01/02/01 B 7
004 02/04/01 A 3
005 02/05/01 C 8
I would like to create a report which group by MONTH, PRODUCT and show sum of Amount sold. What should I do? I tried to create by crosstab query but it only group by Date (not by MONTH) for each product (may be I did something wrong.). Or I need VB.
Thanks for your help in advance.
TransactionNo SellDate Product Amount
001 01/01/01 A 5
002 01/01/01 A 6
003 01/02/01 B 7
004 02/04/01 A 3
005 02/05/01 C 8
I would like to create a report which group by MONTH, PRODUCT and show sum of Amount sold. What should I do? I tried to create by crosstab query but it only group by Date (not by MONTH) for each product (may be I did something wrong.). Or I need VB.
Thanks for your help in advance.