BookmarkSubscribeRSS Feed
VarmaSekhar
Calcite | Level 5

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

2 REPLIES 2
Ksharp
Super User

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

VarmaSekhar
Calcite | Level 5

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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1270 views
  • 0 likes
  • 2 in conversation