Dear experts,
Need your help in this case.
I have a table consisting of two columns, column one for "Item" and column two for "Qty"
I need to create new table that is the result when one inserts new rows as many as "Qty" owned by the "Item".
You can see the example below.
Before
Item | Qty |
a | 3 |
b | 4 |
c | 2 |
After
Item | Label |
a | |
a | |
a | |
b | |
b | |
b | |
b | |
c | |
c |
My colleague suggests that I use Macro Excel / VBA for this case. But I'm unfamiliar with it, so really need your help.
Regards,