Here's my dilema, I've got data that looks like this...
And I want to display it in my report like how it's layed out on page 21 of this PDF document, where the part number is the item number, total quantity is the sum of the quanity within that item number, # of packs is the number of cartons in the carton field, and qty per pack is the quantity in each pack. I know how to get the data but I can't figure out how to lay it out across the report like the example. Can anyone help me out? Thanks!
Code:
Shipment Ord_no Line_no Item_no Loc Qty Pallet Carton
------------------------------ -------- ------- ------------------------------ ---- ---------------------- ------------------------------ ------------------------------
19269 173008 1 4212 FG 100 96307 1
19269 173008 1 4212 FG 100 96307 2
19269 173008 1 4212 FG 100 96307 3
19270 173009 1 4213 FG 100 96307 1
19270 173009 1 4213 FG 100 96307 2
19270 173009 1 4213 FG 100 96307 3
And I want to display it in my report like how it's layed out on page 21 of this PDF document, where the part number is the item number, total quantity is the sum of the quanity within that item number, # of packs is the number of cartons in the carton field, and qty per pack is the quantity in each pack. I know how to get the data but I can't figure out how to lay it out across the report like the example. Can anyone help me out? Thanks!