Hi,
I put trough this programme to copy information form B10:W10 and populate that into the next empty line. I just don't know how to write that down to make it work. Can you please help me with that? Thanks
Sub PopulateLine()
'
' PopulateLine Macro
'
'
Range("B10:W10").Select
Selection.Copy
Range("B15:W15").Select
ActiveSheet.Paste
Range("B15").Select
Application.CutCopyMode = False
End Sub
I put trough this programme to copy information form B10:W10 and populate that into the next empty line. I just don't know how to write that down to make it work. Can you please help me with that? Thanks
Sub PopulateLine()
'
' PopulateLine Macro
'
'
Range("B10:W10").Select
Selection.Copy
Range("B15:W15").Select
ActiveSheet.Paste
Range("B15").Select
Application.CutCopyMode = False
End Sub