How to Convert numeric value to English Word like 1 to one?
Sivakumar
Feb 3rd, 2014
"vb Dim a,b,c,d,res
a=inputbox("Enter the value between 1 to 900")
b=a mod 10
c=right((a-b)*100/100,2)
d=a*1000/1000-c-b
b=cstr(b)
If b=0 and c=0 Then
msgbox third(d)
elseif c=0 ...