Matt_Straya
Member
Hi,
I have a code that I can select a cell then choose a cell to paste it into. However, I want to past it into "Report"!E36 but it wont do it. Any ideas?
_________________________________________________________________
Post moved by Moderator.
I have a code that I can select a cell then choose a cell to paste it into. However, I want to past it into "Report"!E36 but it wont do it. Any ideas?
Code:
Sub GoodNewsTool()
Dim rng, rnge As Range
On Error Resume Next
Set rng = Application.InputBox(Prompt:="Select a Good News story:", _
Title:="The Good News Tool", Type:=8)
Set rnge = Application.InputBox(Prompt:="Paste a Good News story:", _
Title:="The Good News Tool", Type:=8)
rng.Select
Selection.Copy
rnge.Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
&
_________________________________________________________________
Post moved by Moderator.
Last edited by a moderator: