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
what about just converting to the ascii number and using Chr() to convert back to a letter?
col_letter = Chr(Selection.Column + 96)