Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Trying to Use the Code below to autofill a selection. Error comes up when
executed, code is in a loop in which i is the number of the row. Set sourceRange = Worksheets("Ref. PGW").Range(Sheets("Ref. PGW").Cells(i - 1, 8), Sheets("Ref. PGW").Cells(i - 1, 10)) Set fillRange = Worksheets("Ref. PGW").Range(Sheets("Ref. PGW").Cells(i, 8), Sheets("Ref. PGW").Cells(i, 10)) sourceRange.AutoFill Destination:=fillRange, Type:=xlFillDefault Thanks, Steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Steve,
The autofiill method requires that the Destination Range includes the source range. But, you could use SourceRange.Copy FillRange or SourceRange.Copy SourceRange.Offset(1,0) or sourceRange.AutoFill Destination:=Range(sourceRange,fillRange), Type:=xlFillDefault HTH, Bernie MS Excel MVP "Steve" wrote in message ... Trying to Use the Code below to autofill a selection. Error comes up when executed, code is in a loop in which i is the number of the row. Set sourceRange = Worksheets("Ref. PGW").Range(Sheets("Ref. PGW").Cells(i - 1, 8), Sheets("Ref. PGW").Cells(i - 1, 10)) Set fillRange = Worksheets("Ref. PGW").Range(Sheets("Ref. PGW").Cells(i, 8), Sheets("Ref. PGW").Cells(i, 10)) sourceRange.AutoFill Destination:=fillRange, Type:=xlFillDefault Thanks, Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofill method of range class failed | Excel Discussion (Misc queries) | |||
Autofill method of range class failed | Excel Discussion (Misc queries) | |||
autofill method of range class failed | Excel Programming | |||
Autofill method of Range class failed | Excel Programming | |||
Autofill method of range class failed - sometimes | Excel Programming |