从工具栏提交 SAS 代码或宏
是否可以将 SAS 脚本或宏分配给 Base SAS 中的工具栏按钮? 即,您可以“dm”宏或 sas 脚本吗?
Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然。 一种方法是:
要让按钮提交已编译的宏,请在命令字段中键入以下内容(当然替换您的宏名称):
%nameofmacro;run;
要让按钮提交外部 sas 文件,您可以在命令字段中输入类似的内容:
%include "C:\path-to-file\name-of-program.sas";run;
在帮助文本和提示文本字段中输入您想要的内容
Certainly. Here is one way:
To have the button submit a compiled macro, type this in the command field (substituting your macro name of course):
%nameofmacro;run;
To have the button submit an external sas file, you would put something like this in the command field instead:
%include "C:\path-to-file\name-of-program.sas";run;
Put whatever you want in the help text and tip text fields