What Does AutoFill Do in Excel VBA?

The best use of VBA AutoFill comes when we need to fill the formula of the first cell to the cell of the column. We usually apply the formula in the first cell. Then, we copy and paste to the last cell or just auto-fill by double-clicking on the little arrow key. Another best example of using autofill in excelAutofill In ExcelAutoFill in excel can fill a range in a specific direction by using the fill handle.read more is when we need to insert serial numbers. We usually type the first three numbers; then, we drag them down to the required last cell.

In VBA, we can perform the task of the AutoFill method. This article will show you how to use the autofill method and write the code. Now, we will see how we can use this tool in VBA codingTool In VBA CodingVBA code refers to a set of instructions written by the user in the Visual Basic Applications programming language on a Visual Basic Editor (VBE) to perform a specific task.read more.

You are free to use this image on you website, templates, etc., Please provide us with an attribution linkHow to Provide Attribution?Article Link to be HyperlinkedFor eg:Source: VBA AutoFill (wallstreetmojo.com)

How to Use AutoFill in VBA?

To use the AutoFill in VBA, we need to understand the syntax of the AutoFill method. Below is the syntax of the AutoFill.

  • Range (“A1”): What are the cells to identify the pattern of the fill series.Destination: Till what cell do you want to continue the fill series pattern. Here, we need to mention the full range of cells.Type as xlAutoFillType: Here, we can select the series fill type. Below are the list of items in this parameter – xlFillCopy, xlFillDays, xlFillDefault, xlFillFormats, xlFillMonths, xlFillSeries, xlFillValues, xlFillWeekdays, xlFillYears, xlFlashFill, xlGrowthTrend, xlLinearTrend.

Examples of AutoFill in Excel VBA

Let us see some simple to advanced examples of VBAExamples Of VBAHere’s a list of the top examples of VBA Macro code in Excel: Print All Sheet Names, Insert Different Color Index in VBA, Insert Worksheets as Much as You want, Insert Blank Row After Every Other Row Highlight Spelling Mistakes.read more AutoFill in excel.

Example #1 – xlFillDefault

First, enter 3 serial numbers in the first three cells.

In the VBA subprocedure, mention the VBA rangeVBA RangeRange is a property in VBA that helps specify a particular cell, a range of cells, a row, a column, or a three-dimensional range. In the context of the Excel worksheet, the VBA range object includes a single cell or multiple cells spread across various rows and columns.read more as Range (“A1: A3”)

Code:

Sub AutoFill_Example1()

Range(“A1:A3”).

End Sub

Now, access the AutoFill method.

Enter the destination as Range (A1: A10)

Range(“A1:A3”).AutoFill Destination:=Range(“A1:A10”)

Select the “Type” as xlFillDefault.

Range(“A1:A3”).AutoFill Destination:=Range(“A1:A10”), Type:=xlFillDefault

Now, run the code. We will get the serial numbers from 1 to 10.

Since we mentioned the end destination cell as A10, it has stopped there. Therefore, we can enter the destination cell as the last cell of the Excel.

Example #2 – xlFillCopy

We will use the “Type” for the same numbers as xlFillCopy.

Sub AutoFill_Example1()

Range(“A1:A3”).AutoFill Destination:=Range(“A1:A10”), Type:=xlFillCopy

End Sub

We have a copy of the first three cells for the remaining cells.

Example #3 – xlFillMonths

We have entered the first three months in the first three cells.

Change the AutoFill “Type” to xlFillMonths.

Sub AutoFill_Example1()

Range(“A1:A3”).AutoFill Destination:=Range(“A1:A10”), Type:=xlFillMonths

End Sub

It will fill the month series.

Example #4 – xlFillFormats

For this example, we have entered numbers and applied formatting to those cells.

Now, we will change the “Type” to xlFillFormats.

Sub AutoFill_Example1()

Range(“A1:A3”).AutoFill Destination:=Range(“A1:A10”), Type:=xlFillFormats

End Sub

Run this code and see what happens.

It has filled formats from the first three cells to the next three cells and, again, the next three cells.

Example #5 – xlFlashFill

For this example, we have entered a few values from cell A1 to A10, as shown in the below image.

From this list, we want to extract the numerical part. To tell Excel about the pattern, in the first cell, we will manually enter the numerical part of the first cell.

We will write the code as usual and change the “Type” to xlFlashFill. This time we will use the B column range.

Sub AutoFill_Example1()

Range(“B1”).AutoFill Destination:=Range(“B1:B10”), Type:=xlFlashFill

End Sub

If we run this code, we will get the result like the below.

It is an overview of the VBA AutoFill method. We hope you have enjoyed it.

You can download this VBA AutoFill Excel Template from here – VBA AutoFill Excel Template

This article has been a guide to VBA AutoFill in Excel. Here, we discuss How to Use Autofill in Excel VBA with various parameters like xlFillDefault, xlFillFormats, xlFlashFill, etc. You can learn more about VBA from the following articles: –

  • Switch Case Statement in VBAVBA AND FunctionCount in VBACopy Paste in VBA