Standard Macro Header
Section with calls to needed macros
For example %Let MacroDir = L:\BCU Macros\Macros; %include "&MacroDir\words.sas";
Macro call with fully specified parameters
For example %macro logistic(DSName=,Outcome=,Predictors=,ClassVar=,Quartiles=,Quad=Y,Out=,Print=N,Include=FP,Obs=Y,LL=N,HL=N);
Section with definitions of global macro variables :
For example %Global _ClassVar _ClassVariables _Error _Model;
Section with definitions of local macro variables :
For example %Local I J K Flag Testvar;