Attempts:
ODS HTML STARTPAGE=yes;
proc genmod data=solder;
model y = a b c d e f g/ dist = poisson link=identity lrci;
run; quit;
ods html startpage=no;
Any suggestions? Thanks. MM
The concept of "pages" doesn't exist in html.
I should have mentioned I am using SAS on Demand.
Log message says ODS may disable some output features.
All of the usual statements like formdlim='' are not working?
Where can I find out more when I get that message?
It looks like I output things one at a time.
MM
maybe add a <br> using ods text or proc odstext or even just a title?
ODS HTML body='temp.html' path='c:\temp\' options(startpage='yes'); proc print data=sashelp.class;run; ODS HTML options(startpage='yes') ; proc print data=sashelp.class;run; ODS HTML options(startpage='yes') ; proc print data=sashelp.class;run; ods html close;
Try option 'startpage=' :
> I am using SAS on Demand. I think it may react differently than pc SAS.
It's the same SAS process so should behave the same.
> ERROR: Insufficient authorization to access
Create your file in a directory you have write access to
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.