<?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: Blank Spaces lost in ods tagest excelxp in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465747#M20997</link>
    <description>&lt;P&gt;Thanks a lot Cynthia.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked with ODS Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
    <pubDate>Tue, 29 May 2018 16:17:27 GMT</pubDate>
    <dc:creator>draroda</dc:creator>
    <dc:date>2018-05-29T16:17:27Z</dc:date>
    <item>
      <title>Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465318#M20980</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have below sample data and i want to create report in .xml .But when i output the report blank spaces are not visible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the sample data, proc report code and screenshot attached.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
input text $1 -20;
datalines;
1000
  Fever
  ;
data new;
 set new;
 if _n_=2 then text="         "||text;
run;

ods Tagsets.ExcelXP style=sasweb
file='\\C:Users\Desktop\Table.xml' 
options(orientation='landscape' sheet_name="Index" embedded_titles='yes'  ); 
proc report data=new split='*' headskip spanrows spacing=0 nowd style(header)=[fontweight=bold ];
columns text ;
 define text /"Sample data" style(column)=[cellwidth=150 just=left];
run;
ods Tagsets.ExcelXP close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 27 May 2018 07:30:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465318#M20980</guid>
      <dc:creator>draroda</dc:creator>
      <dc:date>2018-05-27T07:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465336#M20982</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/kb/44/126.html" target="_blank"&gt;Usage Note 44126: ASIS=ON does not maintain leading or trailing blanks in the output generated by the ExcelXP tagset&lt;/A&gt; shows a modification to the tagset that you can use.&lt;/P&gt;</description>
      <pubDate>Sun, 27 May 2018 15:58:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465336#M20982</guid>
      <dc:creator>SuzanneDorinski</dc:creator>
      <dc:date>2018-05-27T15:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465343#M20983</link>
      <description>Hi:&lt;BR /&gt;  I think that ODS EXCEL does respect ASIS=ON. You can also use indent= with ODS EXCEL.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Sun, 27 May 2018 16:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465343#M20983</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-05-27T16:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465400#M20984</link>
      <description>&lt;P&gt;Hi Suzzane,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the solution but seems same is not working in my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While i tried for ods tagset excelxp code from documentaion , it is giving unresolved macro variable error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 05:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465400#M20984</guid>
      <dc:creator>draroda</dc:creator>
      <dc:date>2018-05-28T05:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465404#M20985</link>
      <description>&lt;P&gt;Hi Cyntia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Indent option is not working for ods tagset excelxp.Please suggest if by any way i can achieve the desired output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 05:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465404#M20985</guid>
      <dc:creator>draroda</dc:creator>
      <dc:date>2018-05-28T05:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465484#M20987</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; My recommendation is to switch to ODS EXCEL, if possible. Either ASIS=ON or INDENT= works with ODS EXCEL, as shown below.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ods_excel_indent.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20813i37379925EFD2A3A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="ods_excel_indent.png" alt="ods_excel_indent.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 14:25:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465484#M20987</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-05-28T14:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Blank Spaces lost in ods tagest excelxp</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465747#M20997</link>
      <description>&lt;P&gt;Thanks a lot Cynthia.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked with ODS Excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 16:17:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Blank-Spaces-lost-in-ods-tagest-excelxp/m-p/465747#M20997</guid>
      <dc:creator>draroda</dc:creator>
      <dc:date>2018-05-29T16:17:27Z</dc:date>
    </item>
  </channel>
</rss>

