Hello All
I have a dataset that I created from my insurance data. At the end, I need to create a pdf document that contains all of my data with highlighting top and bottom 10 rows (entire rows). Can someone help me how I can obtain this?
Thanks
Varma
You'd better post it at ODS and Report forum, Cynthia is good at it .
proc sql noprint; select count(*) into : n from sashelp.class; quit; ods listing close; ods pdf file='c:\temp\x.pdf' style=sasweb; proc report data=sashelp.class nowd; columns name sex age; define name/display; compute age; n+1; if n le 3 or n ge %eval(&n-3) then call define(_row_,'style','style={background=yellow}'); endcomp; run; ods pdf close; ods listing;
Xia Keshan
Thank you so much Xia Keshan. It is exactly what I needed. In the future, I will make sure to post it in the corresponding forums.
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.