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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.