excel-vba how to convert a column number into an excel column

156

excel-vba how to convert a column number into an excel column -

Function ColName(n)
    ColName = Split(Cells(, n).Address, "$")(1)
End Function

Comments

Submit
0 Comments