ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro error 1004 (https://www.excelbanter.com/excel-programming/303181-macro-error-1004-a.html)

JIM.H.[_2_]

Macro error 1004
 
Hello
the following code gives 1004 error at the last line, what
is problem? Can you do it in any other way?
Thanks,
Jim.


Sub Macro1()
'
Dim mySourceDataRng As Range

With Worksheets(1)
Set mySourceDataRng = .Range("E2:F" _
& .Cells
(.Rows.Count, "A").End(xlUp).Row)
End With

Range("E2").Select
ActiveCell.FormulaR1C1 = "=COUNTIF(RC[-2],""Test-1*"")"
Range("F2").Select
ActiveCell.FormulaR1C1 = "=IF(RC[-1]=1,""1-Test"",RC[-
3])"
Range("E2:F2").Select
'Selection.AutoFill Destination:=Range("E2:F11"),
Type:=xlFillDefault
Selection.AutoFill Destination:=Range
(mySourceDataRng), Type:=xlFillDefault

End Sub


MSP77079[_24_]

Macro error 1004
 
Just a guess ... instead of

Selection.AutoFill Destination:=Range
(mySourceDataRng), Type:=xlFillDefault

You want

Range(mySourceDataRng).AutoFill Destination:=Range
(mySourceDataRng), Type:=xlFillDefaul

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 09:28 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com