Good Day
I Have a Table Called POs and it looks like this:
ID | ITEM | Description | Quantity | Amount |
----------------------------------------------
1 | A123 | Item 1 | 2 | 500 |
2 | A676 | Item 2 | 3 | 300 |
Is there a way to duplicate the line (as View) according to the Quantity amount and Number
it ie.
ID | ITEM | Description | Quantity | Amount | Number |
-------------------------------------------------------
1 | A123 | Item1 | 2 | 500 | 1 |
1 | A123 | Item1 | 2 | 500 | 2 |
2 | A676 | Item2 | 3 | 300 | 1 |
2 | A676 | Item2 | 3 | 300 | 2 |
2 | A676 | Item2 | 3 | 300 | 3 |
Thanks