I have a data set that specifies a list of values and the number of times to "copy" them. For example,
| Fruit | Copy Num |
| Apple | 2 |
| Orange | 4 |
| Banana | 3 |
The output set I'm trying to achieve is this:
| Fruit |
| Apple-1 |
| Apple-2 |
| Orange-1 |
| Orange-2 |
| Orange-3 |
| Orange-4 |
| Banana-1 |
| Banana-2 |
| Banana-3 |
I looked into the Multi-Row Formula tool but wasn't able to figure out how to go about doing this. Does anyone have any suggestions?