I have been trying to make sheet take all the information highlighted in yellow on the "check sheet" and moving it to the "log". On this page I want it to add a new row and paste in the data in yellow.
I tried doing a test of the macro that I would use but it does not add an additional row when I use it
Code
Range("B2:D2").Select
Selection.Copy
Sheets("Log").Select
Range("Log[[#Headers],").Select
Selection.End(xlDown).Select
Range("A7").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B10").Select
Sheets("Item Code").Select
Range("B3:C3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Log").Select
Range("Log[[#Headers],[Descripition]]").Select
Selection.End(xlDown).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C7").Select
Sheets("Item Code").Select
Range("D3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Log").Select
Range("Log[[#Headers],[VRLA AGM]]").Select
Selection.End(xlDown).Select
ActiveSheet.Paste
Selection.ClearContents
Sheets("Item Code").Select
Selection.Copy
Sheets("Log").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Item Code").Select
Display More
I just haven't been able to work out how to do this, any help would be appreciated
I believe I may be going about this the wrong way