This example
uses the data set below to create a summary variable, Total.
As you write the DATA
step to read this file, think about performing several tasks. First,
the value of Address must be retained as detail records are read and
summarized.
data perm.residents;
infile census;
retain Address;
Next, the value of Type must be read in ...