How to automatically increase letter by one to get the next letter in Excel?
Supposing you have a cell contains letter AB, you need to increase the last letter by one to get the next letter AC, AD…and so on. Or you have a letter A, and want to increase the letter to B, C…in order to create a letter list. How to achieve it? This article can help you in details.
Increase letter AB by one to get AC, AD…with formula
Increase letter by one to get the letter list with formula
Increase letter by one to get the letter list with User-defined function
Increase letter AB by one to get AC, AD…with formula
Please do as follows to increase letter by one in Excel.
1. Select a blank cell below the given letter, enter the below formula into it and then press the Enter key.
=IF(RIGHT($A2,1)="Z", CHAR(CODE(LEFT(A2,1))+1),LEFT(A2,1))&CHAR(65+MOD(CODE(RIGHT(A2,1))+1-65,26))
Note: In the formula, A2 is the cell contains the given letter.
2. Keep selecting A3, drag the Fill Handle down to get the list of letters you need.
Increase letter A by one to get the letter list with formula
You can use the =CHAR(CODE(A1)+1) formula to increase letter by one in Excel. Please do as follows.
1. Select a blank cell below the given letter, enter formula =CHAR(CODE(A2)+1) into the Formula Bar and then press the Enter key. See screenshot:
2. Select the result cell, drag the Fill Handle down to get the letter you need.
Note: With this formula, after getting the letter Z, if you keep dragging the Fill Handle down, you will get some special characters as below screenshot shown. If you want to get letter AA after Z, the following user-defined function can help you.
Increase letter by one to get the letter list with User-defined function
The following user-defined function can also help you to increase letter by one in Excel.
1. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.
2. In the Microsoft Visual Basic for Applications window, click Insert > Module. Then copy and paste the below VBA code into the Module window.
VBA code: Increase letter by one to get the letter list
Function ColLtrs(i As Long) As String
ColLtrs = Replace(Cells(1, i).Address(False, False), "1", "")
End Function
3. Press Alt + Q keys to close the Microsoft Visual Basic for Applications window.
4. Select a blank cell below the given letter, enter formula =ColLtrs(ROW()), and then press the Enter key to get the second letter.
2. Select the result cell, drag the Fill Handle down to get the letter you need.
Note: With this method, letters you increased are based on the row number. You need to start the first letter A in the first row of the worksheet, otherwise, the letter will getting disordered.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

















