I have a dataset consisting of two rows. I'd like to convert it to html table using proc report without summarizing and statistics. But istead I get a single row with sums by each column.
Hey I don't know why you want to use proc report but if you just want to output the table as HTML have you tried proc print with ods html?
data aaa;
set sashelp.cars(obs=2);
run;
ods html;
proc print data=aaa noobs;
run;
ods html close;
Hey I don't know why you want to use proc report but if you just want to output the table as HTML have you tried proc print with ods html?
data aaa;
set sashelp.cars(obs=2);
run;
ods html;
proc print data=aaa noobs;
run;
ods html close;
IT WORKED! Without ods html; and ods html close;
I will export to html manually.
Please post a sample of your data and your code.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.