BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

I need to put vertical lines in my report for a few selected variables  and values of the variables (Eg. Shown in attachment). In my data below how to put similar vertical lines before var6 and after var7 in my report. Please help. Thank you.

 

ods rtf file="&outpath\&outnam..rtf" style=journal;                                     
%let s = %sysfunc(repeat(%str(_), 149 )) ;
footnote1 	j=c h=1   "^S={fontstyle=ROMAN fontweight=bold}&s";

proc report data=data1;

column var1 var2 var3 var4 var5 var6 var7 var8 var9;

define var1/group style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var2/style(column)={cellspacing=.20pt just=left width=6%} style(HEADER)={JUST=l} flow;
define var3/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var4/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var5/ style(column)={cellspacing=.20pt just=left width=6%} style(HEADER)={JUST=l} flow;
define var6/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var7/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var8/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;
define var9/ style(column)={cellspacing=.20pt just=left width=10%} style(HEADER)={JUST=l} flow;

run;

ods rtf close;

 

1 REPLY 1

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

How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 1690 views
  • 0 likes
  • 2 in conversation