<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS EXCEL---Excel sheet layout-right to left in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL-Excel-sheet-layout-right-to-left/m-p/968512#M376595</link>
    <description>&lt;P&gt;Here is a similar post to what you are asking:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Ods-excel-right-to-left/td-p/877128" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Ods-excel-right-to-left/td-p/877128&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jun 2025 11:51:21 GMT</pubDate>
    <dc:creator>Kathryn_SAS</dc:creator>
    <dc:date>2025-06-10T11:51:21Z</dc:date>
    <item>
      <title>ODS EXCEL---Excel sheet layout-right to left</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL-Excel-sheet-layout-right-to-left/m-p/968510#M376593</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am running ods excel and also send it to email.&lt;/P&gt;
&lt;P&gt;The XLSX sheets layout&amp;nbsp; is from left to right and i want to change to right to left.&lt;/P&gt;
&lt;P&gt;What is the way to do it?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%let Reportpath="/usr/local/SAS/SASUsers/LabRet/UserDir/udclk79/MYCARS.xlsx";


ods excel file=&amp;amp;Reportpath. 
options  (sheet_name='REPORT1'
embedded_titles='yes' 
embedded_footnotes='yes'
sheet_interval="proc"   /***One table in sheet**/
gridlines = 'yes'
tab_color="YELLOW"
);
proc report data=sashelp.cars contents="Honda Cars";
	  where Make="Honda";
	  column ("Car" make model) ("Cost" msrp invoice) 
           ("Fuel Efficiency" mpg_city mpg_highway);  
run;

ods excel options (sheet_name='REPORTS2'  
sheet_interval="proc"  /**One table in sheet***/
gridlines = 'yes'
tab_color="YELLOW"
);
proc report data=sashelp.cars contents="All Cars" 
spanrows; /* 2 */
	define Make / order;
	define Model / order;                       
	column Make Model MSRP MPG_City Horsepower;
run;

ods excel close;

/****SEND EMAIL****/
/****SEND EMAIL****/
FILENAME mail EMAIL 
from="Ron.Dave@gmail.com"
TO=("Ron.Dave@gmail.com")
SUBJECT="CAR REPORTS"
encoding='utf-8'  /**To show Hebrew!!!**/
CONTENT_TYPE="text/plain" 
attach=(&amp;amp;Reportpath. content_type="excel");
ODS LISTING CLOSE;
/*ODS HTML BODY=mail;*/

data _null_;
file mail;
put 'HELLO';
put 'ATTACH FILE';
put ' ';
put ' ';
put ' ';
put 'REGARDS';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 11:03:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL-Excel-sheet-layout-right-to-left/m-p/968510#M376593</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2025-06-10T11:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL---Excel sheet layout-right to left</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL-Excel-sheet-layout-right-to-left/m-p/968512#M376595</link>
      <description>&lt;P&gt;Here is a similar post to what you are asking:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Ods-excel-right-to-left/td-p/877128" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Ods-excel-right-to-left/td-p/877128&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 11:51:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL-Excel-sheet-layout-right-to-left/m-p/968512#M376595</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2025-06-10T11:51:21Z</dc:date>
    </item>
  </channel>
</rss>

