Hi all,
I created a macro16() to copy and paste as you can see below but always copied to the same row means the first row
How to correct this macro to copy to second row and so on...?
row1 john doe
row1 brian die
to get :
row1 john doe
row2 brian die
Thanks in advance,
the codes by macro are:
Sub Macro16()
'
' Macro16 Macro
' Macro recorded 5/10/2005 by user1
Range("K7").Select
Selection.Copy
Range("B2").Select
ActiveSheet.Paste
Range("K9").Select
Application.CutCopyMode = False
Selection.Copy
Range("C2").Select
ActiveSheet.Paste
Range("K11").Select
Application.CutCopyMode = False
Selection.Copy
Range("D2").Select
ActiveSheet.Paste
Range("K13").Select
Application.CutCopyMode = False
Selection.Copy
Range("E2").Select
ActiveSheet.Paste
Range("K15").Select
Application.CutCopyMode = False
Selection.Copy
Range("H2").Select
ActiveSheet.Paste
End Sub
I created a macro16() to copy and paste as you can see below but always copied to the same row means the first row
How to correct this macro to copy to second row and so on...?
row1 john doe
row1 brian die
to get :
row1 john doe
row2 brian die
Thanks in advance,
the codes by macro are:
Sub Macro16()
'
' Macro16 Macro
' Macro recorded 5/10/2005 by user1
Range("K7").Select
Selection.Copy
Range("B2").Select
ActiveSheet.Paste
Range("K9").Select
Application.CutCopyMode = False
Selection.Copy
Range("C2").Select
ActiveSheet.Paste
Range("K11").Select
Application.CutCopyMode = False
Selection.Copy
Range("D2").Select
ActiveSheet.Paste
Range("K13").Select
Application.CutCopyMode = False
Selection.Copy
Range("E2").Select
ActiveSheet.Paste
Range("K15").Select
Application.CutCopyMode = False
Selection.Copy
Range("H2").Select
ActiveSheet.Paste
End Sub