<?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: formating text in a PUT statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359323#M84498</link>
    <description>&lt;P&gt;Thank you. Let me try the same.&lt;/P&gt;</description>
    <pubDate>Wed, 17 May 2017 10:32:25 GMT</pubDate>
    <dc:creator>Abhi1212</dc:creator>
    <dc:date>2017-05-17T10:32:25Z</dc:date>
    <item>
      <title>formating text in a PUT statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359317#M84495</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the below code to be formatted in such a way it has be displayes in tabluar form. And the invalid reason should be in Red colour.&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;Filename&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Mymail &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;email&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;subject&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"Test- &amp;amp;curmo."&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;to&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"xyz@tyy.com");&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;attach&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"/test/Abhi_&amp;amp;curmo..csv"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;_Null_&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;File&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Mymail;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;'PFA.'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;Put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;'Invalid Reason.'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"&amp;amp;total_read observations were read."&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"&amp;amp;total_output were accepted."&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"&amp;amp;total_excluded were rejected."&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;My output should look like:&lt;/P&gt;&lt;P&gt;Invalid Reason - 'In Red Colour"&lt;/P&gt;&lt;P&gt;below the table which shows&lt;/P&gt;&lt;P&gt;Records Read: 30&lt;/P&gt;&lt;P&gt;Total records :50&lt;/P&gt;&lt;P&gt;Rejected records: 20&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abhi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 10:03:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359317#M84495</guid>
      <dc:creator>Abhi1212</dc:creator>
      <dc:date>2017-05-17T10:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: formating text in a PUT statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359321#M84497</link>
      <description>&lt;P&gt;You can add in the various html tags to get the email to render anyway you want, here is a paper on this:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings10/060-2010.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings10/060-2010.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Page 4 is where to look.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 10:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359321#M84497</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-17T10:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: formating text in a PUT statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359323#M84498</link>
      <description>&lt;P&gt;Thank you. Let me try the same.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 10:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/formating-text-in-a-PUT-statement/m-p/359323#M84498</guid>
      <dc:creator>Abhi1212</dc:creator>
      <dc:date>2017-05-17T10:32:25Z</dc:date>
    </item>
  </channel>
</rss>

