I am trying to join two macros as follows:
Sub updatechange()
'
' updatechange Macro
'
' Keyboard Shortcut: Ctrl+u
'
Sheets("Summary").Select
Range("O5:O14").Select
Selection.Copy
Sheets("Changes to Plan").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Summary").Select
Range("O21:O30").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Changes to Plan").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
The problem is I need the second copy/paste to happen 4 columns over from the first one runs. The operator will be selecting the location for the start.
I have little/no knowledge of VB/syntax and am feeling my through.
Any help greatly appreciated.
Sub updatechange()
'
' updatechange Macro
'
' Keyboard Shortcut: Ctrl+u
'
Sheets("Summary").Select
Range("O5:O14").Select
Selection.Copy
Sheets("Changes to Plan").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Summary").Select
Range("O21:O30").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Changes to Plan").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
The problem is I need the second copy/paste to happen 4 columns over from the first one runs. The operator will be selecting the location for the start.
I have little/no knowledge of VB/syntax and am feeling my through.
Any help greatly appreciated.