I am trying to get I/O as follows:
Input : 123490 Output : BCDEJA
Logic is simple:
if strarr(i)=0,1,2
strarr(i)=0,1,2
This should get you started:
Public Function ConvertValue(iInput As Integer) As String ConvertValue = Chr(65 + iInput) End Function
Please note that value of '65'stands for capital A, lowercase letters start from '97