Converting string to integer

  • Thread starter Thread starter Nexus
  • Start date Start date
CInt() and Str() should do the job.

Examples:
? CInt("56")
? Str(99)

The type casting functions have names like CDbl(), CCur(), ...
 
Back
Top