<?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: Base SAS Scenario in All Things Community</title>
    <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383812#M2612</link>
    <description>&lt;P&gt;no suppose you are working in comany and client want output as i shown above&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jul 2017 17:10:30 GMT</pubDate>
    <dc:creator>Sharad_Pujari</dc:creator>
    <dc:date>2017-07-28T17:10:30Z</dc:date>
    <item>
      <title>Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383709#M2607</link>
      <description>&lt;P&gt;i have dataset like&amp;nbsp;&lt;/P&gt;&lt;P&gt;fname lname&lt;/P&gt;&lt;P&gt;john &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and i want output like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;fname lname&lt;/P&gt;&lt;P&gt;john &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;john &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;john &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;john &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kilber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to do this please help me out...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 14:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383709#M2607</guid>
      <dc:creator>Sharad_Pujari</dc:creator>
      <dc:date>2017-07-28T14:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383719#M2608</link>
      <description>&lt;P&gt;Do loops?&lt;/P&gt;
&lt;PRE&gt;data want (drop=i);
  set have;
  do i=1 to 5;
    output;
  end;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Jul 2017 14:39:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383719#M2608</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-07-28T14:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383743#M2611</link>
      <description>&lt;P&gt;Is there some logic that the fifth version does not have the fname? is it always to create exactly 5 records?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 15:08:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383743#M2611</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-07-28T15:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383812#M2612</link>
      <description>&lt;P&gt;no suppose you are working in comany and client want output as i shown above&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 17:10:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383812#M2612</guid>
      <dc:creator>Sharad_Pujari</dc:creator>
      <dc:date>2017-07-28T17:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383814#M2613</link>
      <description>&lt;P&gt;How about:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;output;&lt;/P&gt;
&lt;P&gt;output;&lt;/P&gt;
&lt;P&gt;output;&lt;/P&gt;
&lt;P&gt;output;&lt;/P&gt;
&lt;P&gt;fname=' ';&lt;/P&gt;
&lt;P&gt;output;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 17:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383814#M2613</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-07-28T17:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383815#M2614</link>
      <description>yeah it will work but it will show both fname and lname record at same no of observation but i want fname 4 times and lname 5 times</description>
      <pubDate>Fri, 28 Jul 2017 17:12:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383815#M2614</guid>
      <dc:creator>Sharad_Pujari</dc:creator>
      <dc:date>2017-07-28T17:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383898#M2615</link>
      <description>&lt;P&gt;Really not the most difficuly update:&lt;/P&gt;
&lt;PRE&gt;data want (drop=i);
  set have;
  do i=1 to 5;
    if i=5 then fname="";
    output;
  end;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Jul 2017 19:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/383898#M2615</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-07-28T19:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Base SAS Scenario</title>
      <link>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/384178#M2617</link>
      <description>thanks&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Jul 2017 08:24:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/All-Things-Community/Base-SAS-Scenario/m-p/384178#M2617</guid>
      <dc:creator>Sharad_Pujari</dc:creator>
      <dc:date>2017-07-31T08:24:49Z</dc:date>
    </item>
  </channel>
</rss>

