SAS
Program Package
as the Save as type option.
SAS Program Summary
as
the Save as type option. The Program Summary
is saved as an HTML file.
Generated with &_CLIENTAPP &_CLIENTAPPVERSION
Macro Variable
|
Description
|
---|---|
_CLIENTAPP
|
name of the application.
|
_CLIENTAPPVERSION
|
application version number.
|
_SASPROGRAMFILE
|
the full path and filename of the SAS program that is currently being run. This macro
variable is available only for SAS program files that are saved on the same server
on which
your SAS Studio code is running.
|
data topn; length rank 8; label rank="Rank"; set topn; by &category descending &measure; if first.&category then rank=0; rank+1; if rank le &n then output; run;
data topn; length rank 8; label rank="Rank"; set topn; by &category descending &measure; if first.&category then rank=0; rank+1; if rank le &n then output; run;
proc sql; select * from sashelp.cars; select * from sashelp.class; quit;