INTO Subcommand (AUTORECODE command)
INTO
provides
names for the target variables that store the new values. INTO
is required and must immediately follow VARIABLES
.
- The number of target variables named or implied on
INTO
must equal the number of source variables listed onVARIABLES
.
Example
AUTORECODE VARIABLES=V1 V2 V3 /INTO=NEWV1 TO NEWV3 /PRINT.
-
AUTORECODE
stores the recoded values of V1, V2, and V3 into target variables named NEWV1, NEWV2, and NEWV3.