Convert integer to string

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to be able to take an integer and save it in a text field. How do I convert the integer to a string? Thanks.
 
Ken said:
I want to be able to take an integer and save it in a text field.
How do I convert the integer to a string?


Access will convert it automatically, you shouldn't have to
do anything. If you want (or need to explicitly convert a
number to a string using your Local Settings, you can use
the CStr function. If you want to convert just about
anything to a specific style, use the Format function.
 
Back
Top