My problem is this.
I have delvelop a report with EG there I use proc surveymeans. The problem with proc surveymeans is that there is no noprint option to prevent output. I thought I could solve it with "ods listing close".
But then I create a SP, the output was there. I can turn all of with "ods _all_ close" but then, there is no way to turn the rigth ods on and I got no output, even the desired output. Can someone help me to solve this problem?
Hi,
I think you can try and use the _webout for printing your required report.
First thing In your STP uncheck the option "Stored Process Macros" under "Include Code For"
select Stored Process Sever ---and Streaming Output as your execution Options
Then as per the below code whatever staments you write between you ods html should only be displayed in your output.
proc print data=sashelp.shoes;
run;
ods html body=_webout;
proc print data=sashelp.class;
run;
ods html close;
Hope this helps...
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.