Hi I want to right align this content to fit the table. data Footer3 ; length col1 $5000; run; proc sql; insert into Footer3 values ('DISCLAIMER: This computer generated statement contains the particulars of the transaction(s) in the account that have been updated till the time of day end operations of the CBS system of the Bank on the previous working day and the same will not reflect the transaction(s) that have occurred in the acount, if any, subsequent thereto. The Federal Bank Ltd. shall not be liable/responsible for want of full particulars of the transaction(s) at the time of the genration of this statement.') values ('This is a computer generated statement which need not normally be signed. Contenets of this statement will be considered correct if no error is reported within 21 days of the statement date.') values ('****END OF STATEMENT****'); quit; /*** Inside ODS PDF ****/ proc report data=Footer3 noheader style(report)=[OUTPUTWIDTH=100%] style(column)=[font_size=0.24cm /*borderleftcolor=white borderrightcolor=white bordertopcolor=white borderbottomcolor=white*/]; run; i am getting the output like this .Please check the attachment The blank space i have marked in yellow i want those space also be to filled and fit the table size
... View more