2 Convert a number to its equivalent letter
If you want to convert a number to its equivalent letter, for e.g. 5 to E, you can use two approaches. 1. Insert this code in a Module and use this function ‘Author: Alan L. Lesmerises‘From: http://www.freevbcode.com/ShowCode.asp?ID=4303 Function ColumnLetter(ColumnNumber As Integer) As String If ColumnNumber > 26 Then ‘ 1st character: Subtract 1 to map the characters […]
Continue reading