View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
OssieMac OssieMac is offline
external usenet poster
 
Posts: 2,510
Default Selection autofill

Firstly the AutoFill destination range starts on the same range as the cell
that holds the first value. In this case A4. Following should do the trick.

Range("A4").Select
Selection.AutoFill Destination:=Range("A4:NETDAYS")

However, it is not necessary to actually select. The following code is the
better method.

Range("A4").AutoFill Destination:=Range("A4:NETDAYS")


--
Regards,

OssieMac