Run-time error '1004': AutoFill method Range class failed

Katılım
12 Mart 2009
Mesajlar
119
Excel Vers. ve Dili
Office 365 - Ingilizce
Merhaba,

Asagidaki kod son satirda Run-time error '1004': AutoFill method Range class failed hatasi veriyor. Nasil duzeltebilirim acaba ?

Kod:
Public Sub Autofiller()
Dim lastDate, lastRowFilled As Long
Range("A1").Select

lastDate = Range(Selection, Selection.End(xlDown)).Rows.Count
lastRowFilled = Range("C1").CurrentRegion.Rows.Count

Set SourceRange = Range("A" & lastDate)
Set fillRange = Range(Cells(lastDate, 1), Cells(lastRowFilled, 1))
SourceRange.AutoFill Destination:=fillRange
 

Korhan Ayhan

Administrator
Yönetici
Admin
Katılım
15 Mart 2005
Mesajlar
42,269
Excel Vers. ve Dili
Microsoft 365 Tr-En 64 Bit
Tam olarak yapmak istediğiniz işlemi açıklar mısınız?
 
Üst