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
Something that works for me is:
Cells(Row,Column).Address
This will return the $AE$1 format reference for you.