I have a series of transactions that each indicate how much units were purchased. For example, I have
- Bud Light 3 units 30 cents per ounce
- Miller Light 2 units 23 cents per ounce
I want to duplicate Bud Light 3 times and Miller Light 2 times:
- Bud Light 1 unit 30 cents per ounce
- Bud Light 1 unit 30 cents per ounce
- Bud Light 1 unit 30 cents per ounce
- Miller Light 1 unit 23 cents per ounce
- Miller Light 1 unit 23 cents per ounce
In other words, I need to create as many single purchase entries as how many purchases were made as indicated in one of my columns.
How can I do that? Appreciate any input.
help expand
should solve your problem. – Roberto Ferrer