Column Letter to Number Converter in Excel (5 Easy Examples)

Example 1 – Using COLUMN Function

In the given sample dataset, we will use the COLUMN function for two conditions. The first condition is for finding out the column number of a specific cell and the second one is for the current working cell.

Suitable Examples of Column Letter to Number Converter in Excel

Step 1:

  • To find out the column number of a specific cell, use the following formula of the COLUMN function mentioning the cell. We will use cell B5.
=COLUMN(B5)

Suitable Examples of Column Letter to Number Converter in Excel

  • After pressing Enter, you will see the column number of the mentioned cell, which is column number 2 for cell B5.

Suitable Examples of Column Letter to Number Converter in Excel

Step 2:

  • To determine the column number of the current cell on which you are working, use the following formula of the COLUMN function.
=COLUMN()

Suitable Examples of Column Letter to Number Converter in Excel

  • After pressing Enter, you will see the column number of the current working cell, which is number 3 for cell C6.

Suitable Examples of Column Letter to Number Converter in Excel


Example 2 – Combining COLUMN and INDIRECT Functions

We will select some column headers of an Excel worksheet randomly in column B and find out their column numbers in column C.

Suitable Examples of Column Letter to Number Converter in Excel

Step 1:

  • Enter the following formula in cell C5, which is the combination of the COLUMN function and the INDIRECT function.
=COLUMN(INDIRECT(B5&"1"))
  • We will input this formula in cell C5 to determine the column number of column A which is in cell B5.

Suitable Examples of Column Letter to Number Converter in Excel

Step 2:

  • Press Enter and you will see the column number of column A in cell C5 which is 1.
  • Use AutoFill to drag down the formula to the remaining cells.
  • You will see all the column numbers in their respective cells.

Suitable Examples of Column Letter to Number Converter in Excel

Formula Breakdown

  • INDIRECT(“B5”) will take the cell value of B5 which is A.
  • INDIRECT(B5&1) receives the previous output and connects 1 to the previous code’s output to make it A1.
  • COLUMN(INDIRECT(B5&”1″)) will show the column number of cell A1, which is 1.

Read More: How to Change Column Name from ABC to 1 2 3 in Excel


Example 3 – Applying Non-Volatile Formula

If you are working with a large dataset, you can use the MATCH function and the ADDRESS function with the COLUMN function as they are both volatile.

Step 1:

  • Enter the following formula in cell C5.
=MATCH(B5&"1", ADDRESS(1, COLUMN($1:$1), 4), 0)

Suitable Examples of Column Letter to Number Converter in Excel

Step 2:

  • Press Enter and you will see the column number of the column.
  • Use the Autofill Handle tool for the remaining cells.

Suitable Examples of Column Letter to Number Converter in Excel

Formula Breakdown

  • COLUMN($1:$1) represents all the columns of the first row in the worksheet.
  • ADDRESS(1, COLUMN($1:$1), 4) will make an arrangement of texts with the first row and all the columns of the worksheet. For example, “A1”, “B1” etc. until the worksheet ends.
  • The formula MATCH(B5&”1″, ADDRESS(1, COLUMN($1:$1), 4), 0) matches the cell value given in cell B5 converted into cell reference, which is A1 and returns where it matches in the previous arrangement.
  • 0 is given to find an exact match in the formula.

Read More: How to Convert Column Number to Letter in Excel


Example 4 – Altering Reference Style

The reference in the formula of cell C5 shows the cell number in column letter which is B5. We will convert the column letter to number by altering the reference cycle.

Suitable Examples of Column Letter to Number Converter in Excel

Step 1:

  • Go to the File tab on the ribbon.

Suitable Examples of Column Letter to Number Converter in Excel

  • Select the Options command.

Suitable Examples of Column Letter to Number Converter in Excel

Step 2:

  • After choosing the command, you will find a dialog box, Excel Options.
  • From the Formulas tab, mark the option named R1C1 reference style.
  • Click OK.

Suitable Examples of Column Letter to Number Converter in Excel

Step 3:

  • You will see that your worksheet will have the R1C1 reference style, in which the columns of the worksheet will be transformed into numeric values.

Suitable Examples of Column Letter to Number Converter in Excel


Example 5 – Applying VBA to Convert Column Letter to Number in Excel

We will use the following data set to apply VBA.

Sample Data Set

Step 1:

  • Choose the Visual Basic command from the Code group in the Developer tab.

Sample Data Set

Step 2:

  • Choose the Module command in the Insert tab.

Sample Data Set

Step 3:

  • Enter the following VBA Code into the Module. We will insert the column letter XFD to find out its column number.
Sub Excel_Column_Letter_to_Number_Converter()
'Convert a specific Column Letter into it's corresponding Numeric Reference
Dim ColumnNumber As Long
Dim ColumnLetter As String
'Call the Column Letter
ColumnLetter = "XFD"
'Convert To the Column Number
ColumnNumber = Range(ColumnLetter & 1).Column
'Show the Final Result
MsgBox "Column " & ColumnLetter & " = " & ColumnNumber
End Sub

Sample Data Set

  • Save the code and press the play button to activate it.

Sample Data Set

Step 4:

  • After running the code, you will see the corresponding column number of XFD which is 16384.

Sample Data Set

  • You can run this code for other column letters as well and find their respective column number.

Sample Data Set

Read More: Find Value in Row and Return Column Number Using VBA in Excel


Download Practice Workbook


Related Articles


<< Go Back to Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Md. Araf Bin Jayed
Md. Araf Bin Jayed

I am Araf. I have completed my B.Sc in Industrial and Production Engineering from Ahsanullah University of Science and Technology. Currently I am working as an Excel & VBA Content Developer in Softeko. With proper guideline and aid of Softeko I want to be a flexible data analyst. With my acquired knowledge and hard work, I want to contribute to the overall growth of this organization.

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo