Repeat data band twice (grouped)
Posted: Wed Jan 16, 2013 9:01 am
Good morning. I have the following data source:
ID Customer
Order description
Order notes
For each "ID Customer" i have many rows, eg. of data in data source:
1
"Description order 1"
"Description notes 1"
1
"Description order 2"
"Description notes 2"
2
"Description order 3"
"Description notes 3"
I need to print:
Customer 1:
Description order 1
Description order 2
Description notes 1
Description notes 2
Customer 2:
Description order 3
Description notes 3
As you can see, i need to group by ID Customer then print all its "Description order" and then all its "Description notes".
May you help on how to do this?
Thank you.
ID Customer
Order description
Order notes
For each "ID Customer" i have many rows, eg. of data in data source:
1
"Description order 1"
"Description notes 1"
1
"Description order 2"
"Description notes 2"
2
"Description order 3"
"Description notes 3"
I need to print:
Customer 1:
Description order 1
Description order 2
Description notes 1
Description notes 2
Customer 2:
Description order 3
Description notes 3
As you can see, i need to group by ID Customer then print all its "Description order" and then all its "Description notes".
May you help on how to do this?
Thank you.