<?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: Excel engine/dbms=excel - # and dot in variable label &amp;gt; bug? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643959#M192267</link>
    <description>So you agree like me that it is a bug in excel dbms. Thanks.</description>
    <pubDate>Wed, 29 Apr 2020 14:16:35 GMT</pubDate>
    <dc:creator>xxformat_com</dc:creator>
    <dc:date>2020-04-29T14:16:35Z</dc:date>
    <item>
      <title>Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643882#M192215</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering why&lt;/P&gt;&lt;P&gt;- hash are converted to&amp;nbsp; a dot and&lt;/P&gt;&lt;P&gt;- dot are causing an issue&lt;/P&gt;&lt;P&gt;when used in a variable label exported in an Excel file&lt;/P&gt;&lt;P&gt;using the excel engine or dmbs=excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works fine with dmbs=xlsx.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it just a reported bug?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname demo excel "&amp;amp;demo./reporting/test.xlsx";

data demo.test (dblabel=yes);
label  x01 = '1 #test'
x2 = '2. test';
retain x01 1 x02 2 ;
run;

libname demo;


&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Apr 2020 12:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643882#M192215</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2020-04-29T12:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643886#M192216</link>
      <description>libname demo XLSX  "&amp;amp;demo./reporting/test.xlsx";</description>
      <pubDate>Wed, 29 Apr 2020 12:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643886#M192216</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-04-29T12:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643887#M192217</link>
      <description>EXCEL and XLS is very old engine ,it is designed for excel2003  ( test.xls ).</description>
      <pubDate>Wed, 29 Apr 2020 12:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643887#M192217</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-04-29T12:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643890#M192219</link>
      <description>&lt;P&gt;It seems to be a problem related to the Excel library engine (which uses MS software and is only available on Windows).&lt;/P&gt;
&lt;P&gt;This code transferred the characters correctly:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="/folders/myfolders/test.xlsx";

data test;
label
  x01 = '1 #test'
  x02 = '2. test'
;
retain x01 1 x02 2 ;
run;

proc print data=test label;
run;

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 12:15:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643890#M192219</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-04-29T12:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643959#M192267</link>
      <description>So you agree like me that it is a bug in excel dbms. Thanks.</description>
      <pubDate>Wed, 29 Apr 2020 14:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643959#M192267</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2020-04-29T14:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Excel engine/dbms=excel - # and dot in variable label &gt; bug?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643961#M192268</link>
      <description>&lt;P&gt;Maybe it was a shortcoming in the old (pre-XLSX) format that needed to be addressed.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 14:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excel-engine-dbms-excel-and-dot-in-variable-label-gt-bug/m-p/643961#M192268</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-04-29T14:18:47Z</dc:date>
    </item>
  </channel>
</rss>

