שלום לכולם,
יש מספר אפשרויות להפקת דוחות 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;