SAS 9.3 Table Properties (Description)

I was looking for a way to evaluate / modify table description through program / code instead of UI. The description of the table is located on the "General" tab of the table properties. Everything I have found shows how using the interface, but nothing using code. Is it possible?

+3


source to share


1 answer


This is actually the label of the dataset. This can be added in a number of ways, basically everywhere you write a dataset, or PROC DATASETS.

proc datasets lib=work;
  modify want(label="Want Label");
quit;

      



or

data class(label="Class Dataset");
  set sashelp.class;
run;

      

+4


source







All Articles