trouble shoot Selection.AutoFill Destination

  • Thread starter Thread starter mario
  • Start date Start date
M

mario

Can somebody correct this code:
Selection.AutoFill Destination:=Range(Cells(1, 4).Address, Cells(LastRow,
3).Address)

The above one gives a lot of errors.
 
Hi Mario,

Your range syntax could be simplified to:


Selection.AutoFill Destination:=Range(Cells(1, 4), _
Cells(Lastrow, 3))

However, as you have not indicated the
problems which you have encountered
and you have not provided any details
of your objective, it is difficult to help
you further.
 

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

Back
Top