For an input data set, specifies the variables to process; for an output data set, specifies the variables to write to the data set.
Valid in: | DATA step and PROC steps |
Category: | Variable Control |
lists one or more variable names. You can list the variables in any form that SAS allows.
data bonus; set payroll(keep=idnum salary); bonus=salary*1.1; run;