Answers for "excel-vba how to convert a column number into an excel column"

VBA
31

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

Function ColName(n)
    ColName = Split(Cells(, n).Address, "$")(1)
End Function
Posted by: Guest on March-30-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language