Add number to letter 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))

Add number to letter excel

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.

Add number to letter excel


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:

Add number to letter excel

2. Select the result cell, drag the Fill Handle down to get the letter you need.

Add number to letter excel

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.

Add number to letter excel


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.

Add number to letter excel

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.


The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
  • Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
  • Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Add number to letter excel


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!

Add number to letter excel

How do I combine text and numbers in Excel?

Combine data with the Ampersand symbol (&).
Select the cell where you want to put the combined data..
Type = and select the first cell you want to combine..
Type & and use quotation marks with a space enclosed..
Select the next cell you want to combine and press enter. An example formula might be =A2&" "&B2..

How do you assign a value to a name in Excel?

Define a name for a cell or cell range on a worksheet.
Select the cell, range of cells, or nonadjacent selections that you want to name..
Click the Name box at the left end of the formula bar. Name box..
Type the name you want to use to refer to your selection. Names can be up to 255 characters in length..
Press ENTER..

How do I add text values in Excel?

Notes:.
For adding text at the beginning of a cell value only, you can use formula: =CONCATENATE("text ",A2)..
For adding text at the end of a cell value, you can use formula: =CONCATENATE(A2," text").
The formula ="text" &A1, =A1& "text" or ="text" &A1& "text" can also help you..