View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
el dee el dee is offline
external usenet poster
 
Posts: 15
Default Type Mismatch Error

Hello,
Any ideas on the type misatch error I recieve here?
Sub Autofill()

LastRow = Range("E").End(xlUp)
Set Range1 = Range(Range("A2"), Range("D65536").End(xlUp).Offset(1, 0))
Range1.Select
Selection.Autofill Destination:=("Range1" & LastRow)

End Sub