<?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: How do I use a enter as the separator for INTO :x SEPARATED BY '???' in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144682#M28876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Nov 2013 02:10:14 GMT</pubDate>
    <dc:creator>DougChar</dc:creator>
    <dc:date>2013-11-15T02:10:14Z</dc:date>
    <item>
      <title>How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144677#M28871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to create the foundation for an email which would summarize for me which reports that I've scheduled had a successful output and which ones did not.&amp;nbsp; I'm basing this all off an excel list which is uploaded daily and is my base reference for which reports should have run.&amp;nbsp; At the end of each report code, I write to a table which tells me that the report had a successful output (if there is no record in the table for the report, then its assumed that the report did not output successfully).&amp;nbsp; My end goal is for the body of the final email to look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following reports were unsuccessful:&lt;/P&gt;&lt;P&gt;Report #3&lt;/P&gt;&lt;P&gt;Report #4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following reports have run successfully:&lt;/P&gt;&lt;P&gt;Report #1&lt;/P&gt;&lt;P&gt;Report #2&lt;/P&gt;&lt;P&gt;Report #5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My dataset for this effort looks like this:&lt;/P&gt;&lt;P&gt;rpt_num&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rpt_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rpt_status&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Report #1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Report #2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been trying to do this via PROC SQL, but am stuck and not able to get the INTO statement SEPARATED BY to use a carriage return.&lt;/P&gt;&lt;P&gt;PROC SQL NOPRINT;&lt;/P&gt;&lt;P&gt;SELECT rpt_name INTO :good SEPARATED BY '0D'x' FROM daily_rpt_status WHERE rpt_status= 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL NOPRINT;&lt;/P&gt;&lt;P&gt;SELECT rpt_name INTO :bad SEPARATED BY '0D'x' FROM daily_rpt_status WHERE rpt_status IS MISSING;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I would use the &amp;amp;good and &amp;amp;bad to fill in the email body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts on this would be greatly appreciated.&amp;nbsp; Also, I'm not tied to doing things this way, especially if there is a more efficient way to do it.&amp;nbsp; This is just based off what I know today.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 23:49:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144677#M28871</guid>
      <dc:creator>DougChar</dc:creator>
      <dc:date>2013-11-14T23:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144678#M28872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you generating the body of the email message?&amp;nbsp; If you are writing to a raw text file then use the end of line characters for your operating system.&amp;nbsp; LF for Unix ('0A'x) and CR+LF for Windows ('0D0A'x).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file 'mymail.txt';&lt;/P&gt;&lt;P&gt; put 'Hi there the results are:'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; / "&amp;amp;good"&lt;/P&gt;&lt;P&gt; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 00:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144678#M28872</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-15T00:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144679#M28873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;I believe I'm writing it as a text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA _NULL_;&lt;/P&gt;&lt;P&gt;FILE myemail;&lt;/P&gt;&lt;P&gt;PUT "Please see attached for your daily report."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// &amp;amp;good;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;I did try using the ('OA'x) as my separater, but I get a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEPARATED BY '0A'x' OR SEPARATED BY '(0A'x)'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEPARATED BY "0A'x"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And got&lt;/P&gt;&lt;P&gt;REPORT 10A'x&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;REPORT 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that it must have something to do with the single quote in the middle of the 0A'x, but I just can't seem to figure out the right combination of single/double quotes to get it right.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 00:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144679#M28873</guid>
      <dc:creator>DougChar</dc:creator>
      <dc:date>2013-11-15T00:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144680#M28874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Try having the SQL query generate code that is valid in a PUT statement.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;SELECT quote(trim(rpt_name))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&amp;nbsp; INTO :good SEPARATED BY ' / ' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&amp;nbsp; FROM daily_rpt_status &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&amp;nbsp; WHERE rpt_status= 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Then this line in a data step :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&amp;nbsp; put &amp;amp;good ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Will be the same as this hard coded line. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;put "&lt;/SPAN&gt;Report #1" / "Report #2" / "Report #5" ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 00:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144680#M28874</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-15T00:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144681#M28875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The other way to do it is to skip the SQL and just use the data set to drive the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; file myemail;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if _n_=1 then do ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "Please see attached for your daily report." ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if eof then put "No good reports.";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if eof then put // "Generated by SAS (R) Software :)" ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; set mydata end=eof;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; where rpt_status = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; put @3 rpt_name ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 00:52:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144681#M28875</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-11-15T00:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144682#M28876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 02:10:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144682#M28876</guid>
      <dc:creator>DougChar</dc:creator>
      <dc:date>2013-11-15T02:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144683#M28877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DougChar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I reckon this is a pretty stale thread by now, but I just found a way around what I think you were looking for (and I certainly was):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we know that the separator has to be a simple character string - so let's create a line feed character using BYTE(10). But we need something in quotes, so just stick the function into a %SYSFUNC() structure like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SELECT rpt_name &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;INTO :good &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SEPARATED BY "%sysfunc(byte(10))"&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;FROM daily_rpt_status &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;WHERE rpt_status= 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Obviously this is just Line Feed = BYTE(10) for *nix systems - for Windows you need Carriage Return = BYTE(13) as well - "%sysfunc(byte(13))%sysfunc(byte(10))" .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better late than never! :smileygrin:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2014 14:01:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144683#M28877</guid>
      <dc:creator>ColinDK</dc:creator>
      <dc:date>2014-07-07T14:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144684#M28878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use hex literals for codes in SAS, but the original poster had the syntax mangled.&lt;/P&gt;&lt;P&gt;To just use a linefeed as the delimiter use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;separated by '0A'x&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To use both a CR and LF then use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;separated by '0D0A'x &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2014 14:09:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144684#M28878</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-07-07T14:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144685#M28879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well that's more compact - thx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2014 14:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/144685#M28879</guid>
      <dc:creator>ColinDK</dc:creator>
      <dc:date>2014-07-07T14:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a enter as the separator for INTO :x SEPARATED BY '???'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/817348#M322636</link>
      <description>Thank you! This worked perfectly in SAS EG 9.4.</description>
      <pubDate>Thu, 09 Jun 2022 18:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-use-a-enter-as-the-separator-for-INTO-x-SEPARATED-BY/m-p/817348#M322636</guid>
      <dc:creator>lrcortland</dc:creator>
      <dc:date>2022-06-09T18:54:05Z</dc:date>
    </item>
  </channel>
</rss>

