Answers for "how to set excel column to number"

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
1

convert int to excel column name

Function converts column index to excel column character
Posted by: Guest on January-12-2021

Code answers related to "how to set excel column to number"

Code answers related to "VBA"

Browse Popular Code Answers by Language