Tagged Questions

1
vote
3answers
20 views

Using ODS to write to network path

Hi, I am using ODS to generate some html files see code below ods html file="&BASE.\index.html" if &BASE refers to my c: drive e.g. c:\sasreports there is no problem …
1
vote
1answer
25 views

Outputting Base SAS to PMML

Is there a way to output a Base SAS file to PMML?
2
votes
1answer
25 views

Creating multiple output files from PROC REPORT

Hi Folk, I'm looking to create multiple output files from a single proc report, preferrably using ODS PDF. The following fragment is a simplified example of where I've got to thu …
0
votes
1answer
113 views

Suppressing results output with proc print and ODS

Hi All Is it possible to suppress the printing of results to the results window while still using proc print to create the HTML file below? filename htmlout "c:\temp.html"; ods …
2
votes
2answers
64 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 …
2
votes
1answer
188 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
1answer
24 views

Dynamic SAS(v9.2) generated objects in Word Documents

Hi there, Any help would be greatly appreciated! I'm generating some tables, graphs etc in SAS and using the ODS to save them as rtf files. I'm saving the tables as hyperlinks in …
1
vote
3answers
297 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 …
1
vote
2answers
72 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"; …
1
vote
1answer
30 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 …