Compile error - help

J

JMay

Is Occuring on last line BEFORE End Sub (below):

Sub Foo()
Dim Rng1 As Range
Dim Rng2 As Range
Dim Rng3 As Range
Dim FindDate As Range
Set FindDate = Sheets("Report").Range("D4")
With Sheets("MyHistory").Range("A:A")
Set x = .Find(What:=FindDate)
End With
Set Rng1 = Sheets("Report").Range("D14")
Set Rng2 = Sheets("Report").Range("A13")
Set Rng3 = Sheets("Report").Range("B1:B4")
Rng1.Copy x.Offset(, 1)
Rng2.Copy x.Offset(, 2)
Rng3.Copy x.Offset(, 3).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=True
End Sub
 
P

Peter T

Rng3.Copy
' on the next line
x.Offset(, 3).PasteSpecial Paste:=xlPasteAll, _
Operation:=xlNone, SkipBlanks:=False, Transpose:=True

might be an idea to test
if not x is nothing then ' etc

Regards,
Peter T
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top