T
Therese
I have a query which returns a sum of order by type by month.
The query returns a result like the following
artnr | artname | quantity | month | name of month
------------------------------------------------------------------------------
1 | bbbb | 345 | 5 | may
3 | aaaa | 123 | 5 | may
7 | ccccc | 555 | 5 | may
1 | bbbb | 666 | 12 | december
4 | ggggg | 5 | 2 | february
4 | ggggg | 8 | 12 | december
and I want to make a report which shows the data as follows
artnr artname .. february ... may ... december
-----------------------------------------------------------------------------------
1 bbbb 345 666
3 aaaa 123
4 ggggg 5 12
Is this possible to do? And in that case, how?
I am grateful for all answers
Therese
The query returns a result like the following
artnr | artname | quantity | month | name of month
------------------------------------------------------------------------------
1 | bbbb | 345 | 5 | may
3 | aaaa | 123 | 5 | may
7 | ccccc | 555 | 5 | may
1 | bbbb | 666 | 12 | december
4 | ggggg | 5 | 2 | february
4 | ggggg | 8 | 12 | december
and I want to make a report which shows the data as follows
artnr artname .. february ... may ... december
-----------------------------------------------------------------------------------
1 bbbb 345 666
3 aaaa 123
4 ggggg 5 12
Is this possible to do? And in that case, how?
I am grateful for all answers

Therese