<?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: Convert XML to XSLX on Linux in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738099#M230183</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Ah!&amp;nbsp; A German idiom!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Quite self-explanatory, but I looked it up just in case&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; carry the church around the cross&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;- be awkward, make an unnecessary detour.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;according to the web&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The Catholic church in Austria has several feasts where a procession through the village is done. As churches are usually situated at the village center, the cross is carried "around the church".&lt;/P&gt;
&lt;P&gt;At least since the 18th century, people have used this phrase to denote something that is done unnecessarily complicated. And I found that a direct translation still gets the meaning across &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Apr 2021 06:33:14 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-04-30T06:33:14Z</dc:date>
    <item>
      <title>Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737917#M230095</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we have a routine that is creating a .xls file which is actually an XML file (via ods&amp;nbsp;&lt;SPAN&gt;Tagsets.ExcelXP). Now I know there are ways in SAS to convert an XML-file to a xlsx-file on Windows, which is described&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Tagsets-ExcelXP-to-XLSX/td-p/91173" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://support.sas.com/kb/43/496.html" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;. However, those require SAS on Windows since they use a Visual Basic script. Our SAS runs on Linux. Is there any way to do a similar behaviour on SAS-Linux?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 13:58:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737917#M230095</guid>
      <dc:creator>SAS-Nutzer</dc:creator>
      <dc:date>2021-04-29T13:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737926#M230099</link>
      <description>&lt;P&gt;Why carry the church around the cross?&lt;/P&gt;
&lt;P&gt;Create the file with ODS EXCEL in the first place.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 14:24:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737926#M230099</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-04-29T14:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737973#M230118</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Why carry the church around the cross?&lt;/P&gt;
&lt;P&gt;Create the file with ODS EXCEL in the first place.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Too obvious.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May be an appropriate place to remind &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/300623"&gt;@SAS-Nutzer&lt;/a&gt; that you can send results to multiple ODS destinations at the same time with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Ods tagsets.excelxp file="&amp;lt;path&amp;gt;\filename.xml";
Ods excel file="&amp;lt;path&amp;gt;\filename.xlsx";
ods rtf file="&amp;lt;path&amp;gt;\filename.rtf";

&amp;lt;something that generates output&amp;gt;

ods rtf close;
ods excel close;
ods tagsets.excelxp close.&lt;/PRE&gt;
&lt;P&gt;BTW bad things happen to people that lie to the operating system. The Excelxp creates xml. naming the output with XLS extension does not change the file type and can cause problems related to "type does not match extension" which can be a serious issue as Microsoft office file formats get further away from the getting very old XLS extension binary format.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 17:05:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/737973#M230118</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-29T17:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738047#M230157</link>
      <description>&lt;P&gt;Ah!&amp;nbsp; A German idiom!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Quite self-explanatory, but I looked it up just in case&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; carry the church around the cross&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;- be awkward, make an unnecessary detour.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;according to the web&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 22:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738047#M230157</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-04-29T22:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738048#M230158</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/300623"&gt;@SAS-Nutzer&lt;/a&gt;&amp;nbsp;does not know about the excel ODS destination. These have come thick and disorganised, so keeping track is not necessarily easy.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 22:53:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738048#M230158</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-04-29T22:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738099#M230183</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Ah!&amp;nbsp; A German idiom!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Quite self-explanatory, but I looked it up just in case&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; carry the church around the cross&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;- be awkward, make an unnecessary detour.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;according to the web&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The Catholic church in Austria has several feasts where a procession through the village is done. As churches are usually situated at the village center, the cross is carried "around the church".&lt;/P&gt;
&lt;P&gt;At least since the 18th century, people have used this phrase to denote something that is done unnecessarily complicated. And I found that a direct translation still gets the meaning across &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 06:33:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738099#M230183</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-04-30T06:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Convert XML to XSLX on Linux</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738154#M230200</link>
      <description>Can you use the following :&lt;BR /&gt;&lt;BR /&gt;filename t temp;&lt;BR /&gt;libname x xmlv2 'c:\temp\temp.xml' xmlmap=t automap=replace;&lt;BR /&gt;proc copy in=x out=work noclone;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;to read in sas . and export excel file via sas as well ?</description>
      <pubDate>Fri, 30 Apr 2021 13:49:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-XML-to-XSLX-on-Linux/m-p/738154#M230200</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-30T13:49:58Z</dc:date>
    </item>
  </channel>
</rss>

