Hi everyone,
Let's say I have 3 rows of data (A,B,C) in column A. I would like to copy this block of data and paste it 3 times from Row10 to Row18 in the same order.
Thank you in advance for your help!
I tried this, but it doesn't work:
Range("A10:A18").value = Range("A1:A3").value
Column A
Row1: A
Row2: B
Row3: C
..
..
..
Expected result:
Row10: A
Row11: B
Row12: C
Row13: A
Row14: B
Row15: C
Row16: A
Row17: B
Row18: C
Let's say I have 3 rows of data (A,B,C) in column A. I would like to copy this block of data and paste it 3 times from Row10 to Row18 in the same order.
Thank you in advance for your help!
I tried this, but it doesn't work:
Range("A10:A18").value = Range("A1:A3").value
Column A
Row1: A
Row2: B
Row3: C
..
..
..
Expected result:
Row10: A
Row11: B
Row12: C
Row13: A
Row14: B
Row15: C
Row16: A
Row17: B
Row18: C
Last edited: