Hello
In following code I get a warning.
WARNING: WORK.TEMPLATE is not a template store! It will be ignored.
Why is this warning coming??
(My version is SAS enterprise 5.1)
data test;
input y ;
cards;
1000
12345
8500
;
run;
ods path(prepend) work.template(update);
proc template;
edit base.summary;
edit mean;
format=dollar12.2;
end;
edit sum;
format=dollar12.;
end;
end;
run;
proc means data=test n mean sum;
var y;
run;
/* restore default template */
proc template;
delete base.summary;
run;