Converting Numeric and Character Data

CONVERTING NUMERIC VARIABLES TO CHARACTER VARIABLES The simpliest way to convert numeric data to character data is using the PUT function. Converting numbers to characters is quite easy. If you have only whole numbers use the following statement: charvar = STRIP(PUT(numvar, 8.)); This will output the character values as whole numbers Example ... ................
................