I am very new to VBA and i am having a hard time with this issue : i have a column with number up to 15 that i need to convert to letters, checking the forum i found a fonction N2L fonction, but i need it to do it from VBA becaue others cells formulas relie on this column input so i can't use char etc... I did a newbie code that works but it is very very ugly. Could you guys give a me hand, all help would be me much appreciated. Here is what i did.
For Each cellule In Range("D24:D58")
Select Case (cellule)
Case Is = 1
cellule.Value = "A"
End Select
Next cellule
For Each cellule In Range("D24:D58")
Select Case (cellule)
Case Is = 2
cellule.Value = "B"
End Select
Next cellule
For Each cellule In Range("D24:D58")
Select Case (cellule)
Case Is = 3
cellule.Value = "C"
End Select
Next cellule
and so on until 15 ... (I have declared cellule as range at the beginning of the sub) Thanks very much in advance.