2
votes
1answer
11 views
Error with ODS and Proc Template
I am trying to create a custom template within a program run via Enterprise Guide. However, no matter what I do, I keep getting an error:
ERROR: Template 'MyTemplate' was unable …
1
vote
3answers
69 views
Statistics not printing for ODS Proc Freq output
What is wrong with this code? When I run it, I get the PROC FREQ tables just fine in the SAS output window, but the spreadsheet shows just the table stubs, with no statistics in t …
2
votes
1answer
44 views
Help with ODS and Reporting?
I am new for SAS.
I have an urgent requirement to report , I have just started with ODS
Data looks like :
ID PLAN DOB(MMYYYY) SEX ZIPCODE
1000000 A 101970 M 1 …
1
vote
1answer
14 views
Set the id= attribute during ODS HTML
I am building a report which contains 3 html tables. The tables themselves are output via ODS HTML, then there is a final step which uses PUT statements to append these 3 raw HTML …
1
vote
2answers
24 views
SAS Enterprise Guide UNIX WORK library - viewing files
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
…