Does anyone have an Excel VBA function which can return the column letter(s) from a number?
For example, entering 100 should return CV.
CV
Here's another way:
{ Sub find_test2() alpha_col = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,W,Z" MsgBox Split(alpha_col, ",")(ActiveCell.Column - 1) End Sub }