Hi guys , I saw this code somewhere when we do ODS rtf, it is really does the job, but I don't know why and how. %let topbrdr = ^R'\brdrt\brdrs\brdrw10'; /*draw a line on top of footnote*/ footnote4 j=left "&topbrdr Program Name xxx ooo"; the other one is "^R'\li380'" in the following code; data final; set all; if ord ne 1 then print="^R'\li380'"||trim(left(stat)); /*add blank before stat*/ else print = trim(left(stat)); run; if i give a bigger number than 380, then add more blank before stat; my question is where I can find information about this ? any idea ? Thank you very much.
... View more