Convert a positive integer with N digits into an alphanumeric string where A = 0, B = 1, …, J = 9. Let N be less than or equal to 1000000.
N=776655
So far I have:
I am new to VBA and i'm not really sure on where to even start with this problem....
N=776655
So far I have:
Code:
Sub code_num() Dim N As integer Dim Alpha As String N=776655
Comment