Hello everyone,
I have a question about executing macro which is stored in an excel file. For example, here is my macro:
%macro ttl_fnt;
title1 "Table 1" ;
title2 "for height and weight of each group";
footnote1 j=left "Study program 1"
j=right "Page 1 of 10";
footnote2 j=left "Version &sysver"
j=right "Date: &sysdate9";
%mend ttl_fnt;
It's saved in excel and then I want to execute it in programming with base SAS. How to do it?
I don't want to just put titles and footnotes in my sas, because I have several projects with same titles and footnotes except title1. Any suggestion is appreciated.