Thanks Cynthia;
I tried the cellpadding in the table statement as you suggested but it didn't seem to produce the desired effect.
Since then, I've moved to a different ods template and changed the cellpadding successfully.
proc template;
define style mytheme;
parent=styles.meadow;
replace Body from Document
"Undef margins so we get the margins from the printer or SYS option"
/
bottommargin = 0.19in
topmargin = 0.19in
rightmargin = 0.20in
leftmargin = 0.20in;
replace Table from output/
cellpadding=1.2pt;
end;
run;
The problem is that cellpadding reduces the white space on all four sides of the value. I only want to reduce the space between rows, not between columns. I increased the format to comma20.0 on the table statement, but the template seems to override that.
table Slab_Source_Dim_Cd=''*
(SLAB_GRD_FAM_NAME='' all) all*[style=[font_size=6.5pt font_weight=bold]],
InvenDate=''*
(PROD_GRP_DIM_CD='' all) *invendate2=''*sum=' '
SLAB_LOC_DIM_CD="&sysdate, By Location" *
SLABTONs=' ' *sum=' '*format=comma20.0
How then do I reduce between row space independently of between column space?
... View more