• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to extract the column letter

Hi Dashboard,

I don't know if there is a direct function to return it like that, but below custom formula can do it. Try this:

=MID(CELL("address",A1),FIND("$",CELL("address",A1))+1,FIND(" ",SUBSTITUTE(CELL("address",A1),"$"," ",2))-FIND("$",CELL("address",A1))-1)

Regards,
 
For the current column
=SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","")

or
For an address in E1
=SUBSTITUTE(ADDRESS(1,COLUMN(E1),4),"1","")
 
Back
Top