BookmarkSubscribeRSS Feed

[SAS 프로그래밍 고수 백승민] [MACRO] MACRO내용 확인 및 저장(%COPY)

Started ‎06-11-2020 by
Modified ‎06-11-2020 by
Views 167

* 라이브러리에 Macro 저장하는 예제와 저장된 Macro의 내용을 확인 하는 프로그램입니다.

libname test 'c:\';

* MACRO저장 라이브러리 지정;
options mstored sasmstore=test;

* MACRO생성후 소스 저장;
%macro BACK/store source;
  PROC PRINT DATA=SASHLEP.CLASS;
  RUN;
%mend;

 * 로그에 위의 MACRO 내용 확인;
%copy BACK/source;

 * SAS파일로 매크로 내용 저장;
%copy BACK/source OUT='C:\TEST1.SAS';

Version history
Last update:
‎06-11-2020 03:51 AM
Updated by:
Contributors

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

Article Labels
Article Tags