I would like to use vba code that can sort this problem out.
I have a row and i want multiple copies of each cell in the same row. It needs to copy the cell by n-numbers. In row 1 will be the information to be copied. and in row 2 the n-number.
So the example:
Input: (say the n-number = 3)
- John
- Hendrik
- Sara
Output:
- John
- John
- John
- Hendrik
- Hendrik
- Hendrik
- Hendrik
- Sara
- Sara
- Sara ....
Hope someone could help me out!