Hey guys, I am needing some assistance with a particular report. I have been using SSRS for quite some time, so I am fairly competent with designing reports, but can't figure out how to handle this new report.
The premise of this report is that we have multiple sales orders. On each sales order, we have multiple products. For each product, we could ship multiple pallets. On each pallet, we have multiple cases. I'm looking to show them By Order, By Product, By Pallet, each case weight. Currently, I have my report in the following format:
<Sales Order #1><Product A> <Pallet 1> <Case1> <Case2> <Case3> <Case4> <Case5><Case6> <CaseN>...
<Pallet 2><Case1> <Case2> <Case3> <Case4>
<Product B> <Pallet 3><Case1><Case2> <Case3>
<Sales Order #2><Product A> <Pallet 1> <Case1> <Case2> <Case3> <Case4> <Case5>
The issue here is that CaseN extends past the end of my page, and I would like to wrap the cases to the next row. This could be accomplished by using the MOD 30 (or however many I want per row), but I'm getting some unpredictable results and not working exactly how I had envisioned it.
The desired layout I'm looking for is the following:
<Sales Order #1><Product A> <Pallet 1> <Case1> <Case2> <Case3> <Case4> <Case5>
<Case6> <CaseN>...
<Pallet 2><Case1> <Case2> <Case3> <Case4>
<Product B> <Pallet 3><Case1> <Case2> <Case3>
<Sales Order #2><Product A> <Pallet 1> <Case1> <Case2> <Case3> <Case4> <Case5>
<Case6> <CaseN>...
Is this possible to do?
Thanks!
P.S. Sorry for the multiple edits. Took me several attempts to get the formatting on the layouts just right.