Range.FillDown Method

Excel Developer Reference

Fills down from the top cell or cells in the specified range to the bottom of the range. The contents and formatting of the cell or cells in the top row of a range are copied into the rest of the rows in the range.

Syntax

expression.FillDown

expression   A variable that represents a Range object.

Return Value
Variant

Example

This example fills the range A1:A10 on Sheet1, based on the contents of cell A1.

Visual Basic for Applications
  Worksheets("Sheet1").Range("A1:A10").FillDown

See Also