Autofill Letters of the Alphabet in Excel

The autofill feature in Microsoft Excel is an incredibly useful and time-saving tool. It allows users to quickly and easily fill in a series of data in a column or row, such as a list of the letters of the alphabet. This is especially useful when entering large amounts of data, as it eliminates the need to type out each letter of the alphabet. Autofill can also save time in cases where data needs to be repeated multiple times. All in all, the autofill feature in Excel is an invaluable tool that can help users get work done quickly and efficiently.


Often you may want to autofill the letters of the alphabet in Excel from A to Z.

Fortunately this is easy to do using the CODE and CHAR functions in Excel and the following example shows how to do so.

Example: How to Autofill Letters of the Alphabet in Excel

To autofill letters of the alphabet, you must first manually type in the first letter you’d like to start with.

For example, we’ll type “A” into cell A1:

Next, we’ll type the following formula into cell A2:

=CHAR(CODE(A1)+1)

This formula will return the letter “B” in cell A2:

Lastly, we can hover over the bottom right corner of cell A2 until a tiny cross (+) appears, then click and drag the formula down to as many cells as we’d like to autofill additional letters of the alphabet:

Excel autofill alphabet

The result is a column of letters ranging from A to Z:

Note: If you start with a lowercase “a” in cell A1 instead, then the formula will autofill all lowercase letters of the alphabet.

How This Formula Works

Recall the formula that we used in cell A2:

=CHAR(CODE(A1)+1)

Here is how this formula works:

First, we use the CODE function to return the ASCII code number associated with the letter in cell A1. This returns 65.

Then we add 1 to get 66.

Then we use the CHAR function to return the character associated with the ASCII code number of 66, which is the letter B.

The formula in the next cell adds 1 again to get 67. Then the CHAR function returns the character associated with the ASCII code number of 67, which is the letter C.

The formula repeats this process over and over until we’re able to generate each letter of the alphabet.

Note: You can find the complete set of ASCII code numbers in Excel .

In conclusion, using the CODE and CHAR functions in Excel makes it easy to autofill the letters of the alphabet from A to Z. This article provided a step-by-step guide on how to do so, as well as an explanation of how the formula works. Further resources were also provided to help with other common operations in Excel.

x