Suppose I have
A
B
C
1
2
3
I copy the A,B,C part by creating a cursor for each line and then copying the line.
Then I create a cursor for each 1,2,3 line and hit paste. I get this
1A
2B
3C
Which is great 99% of the time I want this. But, sometimes I actually want this
1A
B
C
2A
B
C
3A
B
C
Is there a way to do this without going and copying something additional to make the counts not match?