<?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: need help in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402616#M97793</link>
    <description>&lt;P&gt;What a strange question...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you're asking us to supply the input because you can't possibly get output without some input! Given that there are more ways than you can possibly imagine - are there more details to this question?&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2017 06:42:45 GMT</pubDate>
    <dc:creator>ChrisBrooks</dc:creator>
    <dc:date>2017-10-10T06:42:45Z</dc:date>
    <item>
      <title>Generate output without input</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402612#M97791</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me to get below output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without supplying input , how can I get below output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;P&gt;22&lt;/P&gt;
&lt;P&gt;333&lt;/P&gt;
&lt;P&gt;4444&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jasmin Vahora&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 09:41:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402612#M97791</guid>
      <dc:creator>Jasmin27</dc:creator>
      <dc:date>2017-10-10T09:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402616#M97793</link>
      <description>&lt;P&gt;What a strange question...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you're asking us to supply the input because you can't possibly get output without some input! Given that there are more ways than you can possibly imagine - are there more details to this question?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 06:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402616#M97793</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2017-10-10T06:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402617#M97794</link>
      <description>&lt;P&gt;What do you mean by "output"? Do you want to create a text file, a SAS dataset, something to view in the log?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 06:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402617#M97794</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-10T06:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402619#M97796</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/170683"&gt;@Jasmin27&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Just guessing what you're asking for.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want1;
  length want_var $9;
  do i=1 to 9;
    want_var=repeat(strip(put(i,best32.)),i-1);
    output;
  end;
  stop;
run;

data want2;
  input want_var :$9.;
  datalines;
1
22
333
4444
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 06:52:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Generate-output-without-input/m-p/402619#M97796</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-10-10T06:52:58Z</dc:date>
    </item>
  </channel>
</rss>

