hello, i want to create a table with proc Report to show in a pdf with ODS PDF. its all working fine but how can i change the cellheight to a "minimum" ? this is the code: PROC REPORT Data=VMS_T.doorlooptijd1 nowd style=[background=white foreground=black Vjust=B Just=L font=('Calibri, Arial',1pt,Normal) borderwidth = 0]; COLUMNS 'Wachttijd Dagen'n Score ; define 'Wachttijd Dagen'n / style=[height=4pt BorderColor=white Vjust=B Just=L font=('Calibri, Arial',4pt,Normal)]; define Score / style=[height=4pt BorderColor=white Vjust=B Just=L font=('Calibri, Arial',4pt,Normal)]; ; RUN; with this code my cellheight is higher then whats in it. how can i change it? i tried everything. here is a picture from the pdf with the borderlines.
... View more