ods rtf file='path/file.rtf' ;
proc report data=sashelp.class ;
columns name age sex ;
compute before _page_/style={just=cener} ;
line 'test1';
line 'test2';
line @1 'test3';
endcomp;
run;
ods rtf close ;
if i run the above code it will give center alignment but how to fix 'test3' value left alignment like
title1
title2
title3
_______________________________________________________________________