Function to Return a Cells Column Letter

rdsmit1

Board Regular
Joined
Apr 19, 2010
Messages
194
Is there a function you can type into a cell and it will return that cells column letter?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You can use
=SUBSTITUTE(ADDRESS(1,COLUMN(),4),1,"")

But there is really no need to convert column number to letter (other than visual purposes)
You can create formulas that refer to column numbers instead of letters.
 
Upvote 0
You can use<br>
=SUBSTITUTE(ADDRESS(1,COLUMN(),4),1,"")<br>
<br>
But there is really no need to convert column number to letter (other than visual purposes)<br>
You can create formulas that refer to column numbers instead of letters.
<br>
<br>
Actually, it is not just for aesthetics/visual purposes. This can be necessary to avoid #REF! errors when using more advanced formulas involving INDIRECT (there can be other applications for it also). <br>
<br>
For example, in the formula: <br>
=INDIRECT(COLUMN()&"3") <br>
<br>
one would like the column text reference returned. e.g. let's say we are referring to column 6. The above would evaluate to =INDIRECT(63) yielding the #REF! error unless you convert it to the letter column reference.<br>
<br>
 
Upvote 0

Forum statistics

Threads
1,203,521
Messages
6,055,885
Members
444,830
Latest member
Excelsmallbusinessmom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top