BookmarkSubscribeRSS Feed
EyalGonen
Barite | Level 11

שלום לכולם,

 

יש מספר אפשרויות להפקת דוחות HTML ב SAS מימין לשמאל.

להלן מוצגת אחת מהן. אתם מוזמנים להגיב ולהציע אפשרויות נוספות.

 

proc template;
   define style Styles.Hebrew;
      parent = styles.default;
      style Body from Document /
         tagattr = 'dir="RTL"';
   end;
run;

ods html file='c:\temp\test.html' style=hebrew;

proc print data=sashelp.class; run;

ods html close;

 

1 REPLY 1
Assaf_Attas
Obsidian | Level 7

ממליץ גם להכניס את המקטע הבא לתוך ה proc template

 

style Document from Container
contenttype = "text/html; charset=windows-1255"
;