I am using Crystal XI and accessing an oracle db. I am attempting to show the value of multiple strings as one value in the group footer. I have grouped all orders by OrderID. For example my report is displaying the following data.
ORDERID SUPPLIER TOTALCOST Item name
364849 ACC 98.55 AA JERSEY T
364849 Alpha 4.09 AA GIRLY JERSEY
364849 Broder 9.99 Gildan T Shirt
356149 Augusta 56.25 Augusta Ringer T
356149 Sanmar 235.90 Port & Company- T-Shirt
356154 ACC 247.21 American Apparel Jersey T
356154 ACC 21.74 Hanes Beefy-T
356192 Broder 6.22 Gildan Ultra Cotton T
356192 Alpha 73.64 Gildan Ultra Cotton T
What I am attempting to is show all suppliers and styles for each order. My desired result would look something like this.
356489 ACC/Alpha/Broder 112.63 AA Jersey T/AA GIRLY JERSEY/Gildan T Shirt
356149 Augusta/Sanmar 292.15 American Apparel Jersey T/Hanes Beefy-T
356154 ACC 268.95 American Apparel Jersey T/Hanes Beefy-T
256192 Broder/Alpha 79.86 Gildan Ultra otton T
I tried the following formula thinking it may work however I receive the error message that the result of a formula cannot be an array.
Split({PROD_BLANK.ITEMNAME},";")
So I'm not sure if or where to go from here. Any help would be greatly appreciated.
-Tim
ORDERID SUPPLIER TOTALCOST Item name
364849 ACC 98.55 AA JERSEY T
364849 Alpha 4.09 AA GIRLY JERSEY
364849 Broder 9.99 Gildan T Shirt
356149 Augusta 56.25 Augusta Ringer T
356149 Sanmar 235.90 Port & Company- T-Shirt
356154 ACC 247.21 American Apparel Jersey T
356154 ACC 21.74 Hanes Beefy-T
356192 Broder 6.22 Gildan Ultra Cotton T
356192 Alpha 73.64 Gildan Ultra Cotton T
What I am attempting to is show all suppliers and styles for each order. My desired result would look something like this.
356489 ACC/Alpha/Broder 112.63 AA Jersey T/AA GIRLY JERSEY/Gildan T Shirt
356149 Augusta/Sanmar 292.15 American Apparel Jersey T/Hanes Beefy-T
356154 ACC 268.95 American Apparel Jersey T/Hanes Beefy-T
256192 Broder/Alpha 79.86 Gildan Ultra otton T
I tried the following formula thinking it may work however I receive the error message that the result of a formula cannot be an array.
Split({PROD_BLANK.ITEMNAME},";")
So I'm not sure if or where to go from here. Any help would be greatly appreciated.
-Tim