<?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: using INPUT function in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302301#M64120</link>
    <description>&lt;P&gt;IMO these kind of questions&amp;nbsp;shouldn't be asked here, since they can be answered&amp;nbsp;by just testing the code.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2016 10:38:52 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2016-10-04T10:38:52Z</dc:date>
    <item>
      <title>using INPUT function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302290#M64109</link>
      <description>&lt;P&gt;what is the result of the below statment, if the &amp;amp;beg_date = '20160101'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;from_date = INPUT (&amp;amp;beg_date, YYMMDD8.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 10:02:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302290#M64109</guid>
      <dc:creator>SudheerAnkem</dc:creator>
      <dc:date>2016-10-04T10:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: using INPUT function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302295#M64114</link>
      <description>&lt;P&gt;The result is the string:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;from_date = INPUT ('20160101', YYMMDD8.);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Gets fed into the SAS compiler. &amp;nbsp;I assume you know what the input() function does - i.e. convert text in the given format to numeric variant?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 10:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302295#M64114</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-10-04T10:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: using INPUT function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302301#M64120</link>
      <description>&lt;P&gt;IMO these kind of questions&amp;nbsp;shouldn't be asked here, since they can be answered&amp;nbsp;by just testing the code.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 10:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302301#M64120</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-10-04T10:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: using INPUT function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302311#M64126</link>
      <description>from_date = INPUTN (&amp;amp;beg_date, YYMMDD8.);</description>
      <pubDate>Tue, 04 Oct 2016 11:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302311#M64126</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-04T11:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: using INPUT function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302312#M64127</link>
      <description>&lt;PRE&gt;

 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 51         
 52         %let beg_date = '20160101';
 53         data _null_;
 54         from_date = INPUT(&amp;amp;beg_date, YYMMDD8.);
 55         put from_date= yymmddn8.;
 56         run;
 
 from_date=20160101
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       cpu time            0.02 seconds
       
 
 57         
 58         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         

&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Oct 2016 11:39:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-INPUT-function/m-p/302312#M64127</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-04T11:39:08Z</dc:date>
    </item>
  </channel>
</rss>

