by Richard A. DeVenezia Minimize top View Comments Send Feedback
Extending the utility of the SAS Explorer window using custom actions. This document has the ambitous goal of collecting actions sets from personal settings, SAS-L posts, private correspondence and contributions. These action sets should improve your productivity and make SAS Explorer more useful.
Use at your own risk. Code presented here makes changes to the SASUSER registry.
If you have already made your own customizations, please back up your settings (see Proc REGISTRY export=
).
Some tricks you might encounter:
_DATA_
- output to _DATA_ creates a new sequentially numbered table named DATAn _LAST_
- use the last created table or view filename fileref temp
- fileref points to an automatic temporary file gsub
- submit a snippet of code to submit executor %%
- collapse to % for macro interaction ""
- collapse to " when nested inside " " The registry is updated programmatically as follows:
Proc REGISTRY import={source}; run;