I was trying to create a SAS rtf style template with margins 0.2in on each side. I've found out, that I can't set margin less then 0.25in, if I set 0.3in – it will work, but 0.2in will result in 0.25in margin, checked with Word. Can't SAS calculate margins less then 0.25in? Or am doing something wrong? ``` sas proc template; define style styles.test; parent=styles.rtf; style body from document / leftmargin=0.2in rightmargin=0.2in topmargin=0.2in bottommargin=0.2in; end; run; ``` Try it yourself, and share your results, please.
... View more