Hi everyone,
I am using STYLE=RTF in the following program and encounter a problem: I need to get rid of the horizontal lines (not all) every time the variable NAME changes the value(in this case it goes from FACID to LTYPE).
Here is my code:
Any help would be greatly appreciated!
I am using STYLE=RTF in the following program and encounter a problem: I need to get rid of the horizontal lines (not all) every time the variable NAME changes the value(in this case it goes from FACID to LTYPE).
Here is my code:
Code:
data test;
infile datalines dsd;
input name $ type $ len $ desc $ ;
datalines;
facid,char,3,oak
, , ,fre
, , ,rch
ltype,char,1,kfh
;
run;
ods listing close;
ods rtf
file ='c:\temp\test1.rtf'
style =rtf
rs =none ;
proc print data=test noobs;
run;
ods rtf close;
Any help would be greatly appreciated!