copy paste sum macro returns runtime error 424

fred7788

New Member
Joined
Feb 29, 2016
Messages
5
Hello,
I would appreciate any help with this macro...it copies the cells values in the first half no problem, but I also
need it to mouse click the sum in the second part. It returns runtime error "424" Object required.

Sub samplesum6() Dim rng As Range
Dim inp As Range
Dim x As Range

If TypeName(Selection) <> "Range" Then
MsgBox "Select a range first."
Else
Set inp = Selection

End If


Set rng = Application.InputBox("copy to", Type:=8)

If Not rng Is Nothing Then
rng.Parent.Activate
rng.Select
inp.Copy
ActiveSheet.Paste link:=True

End If

Set x = Application.Sum(inp)

Set rng = Application.InputBox("copy to", Type:=8)

If Not rng Is Nothing Then
rng.Parent.Activate
rng.Select
x.Copy
ActiveSheet.Paste link:=True

End If
End Sub
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Forum statistics

Threads
1,214,942
Messages
6,122,367
Members
449,080
Latest member
Armadillos

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