Thank you Ballard,
I don't have a specail data for this code, the percentage doesn't work. I still have the gap.
My code is :
options orientation=portrait;
OPTIONS TOPMARGIN=.001 in BOTTOMMARGIN=.001 in LEFTMARGIN=.001 in RIGHTMARGIN=.001 in;
ODS NORESULTS;
ODS PDF FILE = "&Publipostage.\TEST.pdf" dpi=1800 startpage=no;
data _NULL_;
declare odsout obj();
obj.layout_absolute(width:
"8.26 in",height:"11.68 in" );
obj.table_start(name: "Table1_2",label: "Notre première table bis",overrides: "rules=none width=18cm frame=void");
obj.row_start();
obj.format_cell(text: "WORDS WORDS WORDS WORDS WORD :", overrides: " backgroundcolor=cx338AFF just=left color=white font_size=10pt font_weight=bold cellheight=0.55cm cellwidth=80% fontfamily=arial");
obj.format_cell(data: "NA", overrides: " backgroundcolor=cx338AFF color=white font_size=10pt font_weight=bold just=left cellheight=0.55cm cellwidth=20% fontfamily=arial");
obj.row_end();
obj.table_end();
run;
... View more