Presumably you already have a data set that contains CLASS. To use that data set, you need to use a SET statement. For example, if the name of the data set that contains CLASS is A, you need:
data new;
set a;
... whatever changes you want to make, such as creating class_final ...;
run;
If you use this statement instead, you will destroy your existing data set:
data a;
... View more