Created a report showing invoice number and product number. Problem is it creates a new line for each invoice number because there are multiple product numbers associated with each invoice number.
table invoice, field "inv_num"
table prod_sold, field "prod_num"
Report is something like this:
Invoice Number Product Number
001 989
001 608
002 700
003 899
003 900
How can I make it show as:
Invoice Number Product Number
001 989, 608
002 700
003 899, 900
Thanks,
-Brent
table invoice, field "inv_num"
table prod_sold, field "prod_num"
Report is something like this:
Invoice Number Product Number
001 989
001 608
002 700
003 899
003 900
How can I make it show as:
Invoice Number Product Number
001 989, 608
002 700
003 899, 900
Thanks,
-Brent