D DashboardNovice Member Jul 14, 2014 #1 Using something like column(D1) will return 4. But is there a function which can return the letter "D" instead of the column number?
Using something like column(D1) will return 4. But is there a function which can return the letter "D" instead of the column number?
Somendra Misra Excel Ninja Jul 14, 2014 #2 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,
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,
Hui Excel Ninja Staff member Jul 14, 2014 #3 For the current column =SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","") or For an address in E1 =SUBSTITUTE(ADDRESS(1,COLUMN(E1),4),"1","")
For the current column =SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","") or For an address in E1 =SUBSTITUTE(ADDRESS(1,COLUMN(E1),4),"1","")