Hi,
I need to make a report based on a query that joins multiple tables.
Until now, I have made the query that shows the OrderID, OrderDate, OrderDesc, UnitDEliveryDate, UnitID, BSUnitID, QtyOrdered.
Now what I want is that each unit(UnitID, BSUnitID) being displayed as much as the QtyOrdered value, i.e:
anyone can help? THanks
I need to make a report based on a query that joins multiple tables.
Until now, I have made the query that shows the OrderID, OrderDate, OrderDesc, UnitDEliveryDate, UnitID, BSUnitID, QtyOrdered.
Now what I want is that each unit(UnitID, BSUnitID) being displayed as much as the QtyOrdered value, i.e:
Code:
_________________________________________________
|OrderID|OrderDate|OrderDesc|UDD|UnitID|BSUnitID|
| 1 |20/02/013|Stock1 | |41 |YCJSF-1 | 3x (because the QtyOrdered is 3)
| 1 |20/02/013|Stock1 | |41 |YCJSF-1 |
| 1 |20/02/013|Stock1 | |41 |YCJSF-1 |
| 1 |20/02/013|Stock1 | |33 |TF-461 | 2x (because the QtyOrdered is 2)
| 1 |20/02/013|Stock1 | |33 |TF-461 |
| 1 |20/02/013|Stock1 | |8 |UFWWD-2 | 1x (because the QtyOrdered is 1)
-------------------------------------------------
etc.
anyone can help? THanks