Macro help - very simple.

jondon

New Member
Joined
Mar 27, 2003
Messages
36
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.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
How is you decide where to paste? It currently will paste wherever the active cell is.

But something like

Rich (BB code):
Sub updatechange()
' Keyboard Shortcut: Ctrl+u
With Application
    .ScreenUpdating = False
        Sheets("Summary").Range("O5:O14").Copy
        Sheets("Changes to Plan").Range("A1").PasteSpecial xlPasteValues
        Sheets("Summary").Range("O21:O30").Copy
        Sheets("Changes to Plan").Range("E1").PasteSpecial xlPasteValues
    .ScreenUpdating = True
End With
End Sub

Altering the bit in bold to suit
 
Last edited:
Upvote 0
the user selects the paste location for each when they are run individually - but the second paste operation always takes place 4 columns to the right for the second one on the same row.

It is iterative. when a change to the worksheet in general is made a new "entry" is logged and the the initial paste point will be 11 rows below the last entry. I though that having the user make the first selection (they are used to it ) and I could bet the second bit to run based on "4 to the left logic". That I have no idea how to do.

Just saw your answer - how do I say user selection instead of Range("a1") and "4 to the left" instead of Range ("e1")?
 
Last edited:
Upvote 0
Assuming the user picks the cell then fires the macro then try

Code:
Sub updatechange()
' Keyboard Shortcut: Ctrl+u
Dim currCell As String
With Application
    .ScreenUpdating = False
        currCell = ActiveCell.Address
        Sheets("Summary").Range("O5:O14").Copy
        Sheets("Changes to Plan").Range(currCell).PasteSpecial xlPasteValues
        Sheets("Summary").Range("O21:O30").Copy
        Sheets("Changes to Plan").Range(currCell).Offset(0, 4).PasteSpecial xlPasteValues
    .ScreenUpdating = True
End With
End Sub
 
Upvote 0
No problem, any time ;)

Thanks for the feedback :D
 
Upvote 0

Forum statistics

Threads
1,214,621
Messages
6,120,568
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top