<?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 Variable in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Variable/m-p/671212#M23366</link>
    <description>&lt;P&gt;I have 25 observations i want to assign 1 to a variable for 1 - 12 observations and assign 2 to the same variable for 13-25 observations&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jul 2020 20:58:39 GMT</pubDate>
    <dc:creator>honeyblue</dc:creator>
    <dc:date>2020-07-21T20:58:39Z</dc:date>
    <item>
      <title>Variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Variable/m-p/671212#M23366</link>
      <description>&lt;P&gt;I have 25 observations i want to assign 1 to a variable for 1 - 12 observations and assign 2 to the same variable for 13-25 observations&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 20:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Variable/m-p/671212#M23366</guid>
      <dc:creator>honeyblue</dc:creator>
      <dc:date>2020-07-21T20:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Variable/m-p/671215#M23367</link>
      <description>&lt;P&gt;by order or randomly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you mean by order, the first 12 records are to be one then:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
   set have;
   if _n_ le 12 then variable=1;
   else variable=2;
run;&lt;/PRE&gt;
&lt;P&gt;_n_ is a SAS automatic variable that counts iterations of a data step. In a simple use like this it is basically the row number.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 21:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Variable/m-p/671215#M23367</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-07-21T21:17:59Z</dc:date>
    </item>
  </channel>
</rss>

