<?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: sas eg in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713388#M220077</link>
    <description>&lt;P&gt;Post an example of your data. Copy some lines using a TEXT editor, not a spreadsheet, and paste the values into a text box opened on the forum with the &amp;lt;/&amp;gt;. The text box is important because the main message windows reformat text which can change the values pasted.&lt;/P&gt;
&lt;P&gt;Copy from a text editor is critical because lines copied when opened by a spreadsheet would no longer be CSV.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, show the generated code from the log of what you attempted.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2021 15:48:35 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-01-22T15:48:35Z</dc:date>
    <item>
      <title>Import currency symbols</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713334#M220054</link>
      <description>&lt;P&gt;Thanks In advance,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have currencycode.csv file and i want to import into SAS using code but unable to import it.&lt;/P&gt;
&lt;P&gt;currencycode.csv&lt;BR /&gt;-------------------------&lt;BR /&gt;------------------------------------------------&lt;BR /&gt;country code currencysymbol&lt;BR /&gt;------------------------------------------------&lt;BR /&gt;Australia AUT $&lt;BR /&gt;Austria AST €&lt;BR /&gt;canada CAD $&lt;BR /&gt;Belgium BEL €&lt;/P&gt;
&lt;P&gt;I want to rea this special character in column currencysymbol in sas as it, could you please help me to read this csv file.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 07:27:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713334#M220054</guid>
      <dc:creator>hema_bhure</dc:creator>
      <dc:date>2021-01-25T07:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: sas eg</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713388#M220077</link>
      <description>&lt;P&gt;Post an example of your data. Copy some lines using a TEXT editor, not a spreadsheet, and paste the values into a text box opened on the forum with the &amp;lt;/&amp;gt;. The text box is important because the main message windows reformat text which can change the values pasted.&lt;/P&gt;
&lt;P&gt;Copy from a text editor is critical because lines copied when opened by a spreadsheet would no longer be CSV.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, show the generated code from the log of what you attempted.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 15:48:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713388#M220077</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-01-22T15:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: sas eg</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713830#M220296</link>
      <description>&lt;P&gt;Thank You so much for your time, I have tried through an SAS EG using import data option.&lt;/P&gt;&lt;P&gt;and the following code has been generated. and I need same output data n SAS data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Input data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;----------------&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;CountryISOCode_2 CountryISOCode_3 CountryName CurrencyCode Region CurrencySymbol&lt;BR /&gt;AT AUT AUSTRIA EUR ACC €&lt;BR /&gt;BE BEL BELGIUM EUR ACC €&lt;BR /&gt;CZ CZE CZECH REPUBLIC CZK ACC Kč&lt;BR /&gt;DE DEU GERMANY EUR ACC €&lt;BR /&gt;ES ESP SPAIN EUR ACC €&lt;BR /&gt;NL NLD HOLLAND NLG ACC ƒ&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;code generated through the the IMPORT DATA option in EG&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;DATA WORK.'Copy of EU_Company'n;&lt;BR /&gt;30 LENGTH&lt;BR /&gt;31 CountryISOCode_2 $ 2&lt;BR /&gt;32 CountryISOCode_3 $ 3&lt;BR /&gt;33 CountryName $ 14&lt;BR /&gt;34 CurrencyCode $ 3&lt;BR /&gt;35 Region $ 4&lt;BR /&gt;36 CurrencySymbol $ 2 ;&lt;BR /&gt;37 FORMAT&lt;BR /&gt;38 CountryISOCode_2 $CHAR2.&lt;BR /&gt;39 CountryISOCode_3 $CHAR3.&lt;BR /&gt;40 CountryName $CHAR14.&lt;BR /&gt;41 CurrencyCode $CHAR3.&lt;BR /&gt;42 Region $CHAR4.&lt;BR /&gt;43 CurrencySymbol $CHAR2. ;&lt;BR /&gt;44 INFORMAT&lt;BR /&gt;45 CountryISOCode_2 $CHAR2.&lt;BR /&gt;46 CountryISOCode_3 $CHAR3.&lt;BR /&gt;47 CountryName $CHAR14.&lt;BR /&gt;48 CurrencyCode $CHAR3.&lt;BR /&gt;49 Region $CHAR4.&lt;BR /&gt;50 CurrencySymbol $CHAR2. ;&lt;BR /&gt;51 INFILE '/sas/files/excel/#LN00018'&lt;BR /&gt;52 LRECL=33&lt;BR /&gt;53 ENCODING="LATIN1"&lt;BR /&gt;54 TERMSTR=CRLF&lt;BR /&gt;55 DLM='7F'x&lt;BR /&gt;56 MISSOVER&lt;BR /&gt;57 DSD ;&lt;BR /&gt;58 INPUT&lt;BR /&gt;2 The SAS System 01:24 Monday, January 25, 2021&lt;/P&gt;&lt;P&gt;59 CountryISOCode_2 : $CHAR2.&lt;BR /&gt;60 CountryISOCode_3 : $CHAR3.&lt;BR /&gt;61 CountryName : $CHAR14.&lt;BR /&gt;62 CurrencyCode : $CHAR3.&lt;BR /&gt;63 Region : $CHAR4.&lt;BR /&gt;64 CurrencySymbol : $CHAR2. ;&lt;BR /&gt;65 RUN;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 06:58:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713830#M220296</guid>
      <dc:creator>hema_bhure</dc:creator>
      <dc:date>2021-01-25T06:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: sas eg</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713878#M220312</link>
      <description>&lt;P&gt;This is not data from a csv file. A csv file would have commas to separate the columns (and headers), or (in the case of an Excel-created csv) semicolons.&lt;/P&gt;
&lt;P&gt;Please open the source file (not the file created by EG) with a text editor and copy/paste the contents into a window opened with the &amp;lt;/&amp;gt; button. DO NOT SKIP THIS, to keep the formatting.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 12:00:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-currency-symbols/m-p/713878#M220312</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-25T12:00:24Z</dc:date>
    </item>
  </channel>
</rss>

