Converting Numeric and Character Data

The simpliest way to convert numeric data to character data is using the INPUT function. If you have only numeric data as an integer in a character variable use the following statement: numvar = INPUT(charvar, 8.); Example: FROM TO 7 7 69 69 34 34 12 12 Remember: the numeric data is right justified and characters are left justified. *** ................
................