Hi
Two things - in the below code . I have just recorded a macro to get this .
1, Is there a neater why to do this and
2, The start cell is static but the to cell can vary (j2 static. j50 can vary ) is there a way to acheive this with out having to alter the code every time.
Sheets("Sheet2").Select
Range("J2:J50").Select
Selection.Copy
Sheets("SPW Schedule").Select
Range("A3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet2").Select
Range("H2:H50").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("SPW Schedule").Select
Range("D3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Two things - in the below code . I have just recorded a macro to get this .
1, Is there a neater why to do this and
2, The start cell is static but the to cell can vary (j2 static. j50 can vary ) is there a way to acheive this with out having to alter the code every time.
Sheets("Sheet2").Select
Range("J2:J50").Select
Selection.Copy
Sheets("SPW Schedule").Select
Range("A3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet2").Select
Range("H2:H50").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("SPW Schedule").Select
Range("D3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False