how to put a number in a string into an integer?
st as string
int as integer
st="205"
how to put st in int?
Printable View
how to put a number in a string into an integer?
st as string
int as integer
st="205"
how to put st in int?
Use the Cint function, that is
st=Cint(st)
André
your answer does the oppiste of what i meant
Then use the Cstr function
st=Cstr(st)
Your formulation was not as clear to me, sorry.
Hope this works