Try this one for "Sheet1"
Sub test()
With Worksheets("Sheet1")
Set SourceRange = .Range("Y2")
Set fillRange = .Range("Y2:Y" & .Cells(Rows.Count, "X").End(xlUp).Row)
End With
SourceRange.AutoFill Destination:=fillRange
End Sub
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Eric_G" <(E-Mail Removed)> wrote in message news:6AF0D014-7812-45B6-9C64-(E-Mail Removed)...
>I believe this question has been answered previously, but I can't easily
> locate the answer.
>
> I wish to copy cell value "Y2" to cells Y3 downward to the last row where a
> value exists in column X.
>
> Any suggestions?