<?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: Is there a way to divide and entire row by a constant? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294649#M61489</link>
    <description>&lt;P&gt;Reeza, Thanks a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still using SAS OnLine Doc. of 9.2 version and beeing in age&amp;nbsp;of 70 explains it.&lt;/P&gt;</description>
    <pubDate>Sun, 28 Aug 2016 19:14:01 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2016-08-28T19:14:01Z</dc:date>
    <item>
      <title>Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294623#M61479</link>
      <description>&lt;P&gt;Hi I was wondering if there is a way to divide a row by a constant, for example, by 3?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 12:38:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294623#M61479</guid>
      <dc:creator>drichmo1</dc:creator>
      <dc:date>2016-08-28T12:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294624#M61480</link>
      <description>&lt;P&gt;it is possible:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;const = 3;&lt;/P&gt;
&lt;P&gt;array num _NUMERIC_;&lt;/P&gt;
&lt;P&gt;do over num; num = num / const; end;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 13:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294624#M61480</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-08-28T13:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294629#M61483</link>
      <description>&lt;P&gt;And only because DO OVER is deprecated:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;const = 3;

array num _NUMERIC_;

do i=1 to dim(num);
    num = num / const; 
end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 13:14:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294629#M61483</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-28T13:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294647#M61487</link>
      <description>&lt;P&gt;Reeza, may I ask what do you mean by "deprecated" ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tested the code, as wriiten originally with DO OVER&amp;nbsp;and it worked without any syntax and even not a anote in the log.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As mutch as I know, &amp;nbsp;DO OVER and DO ... FROM ... TO ... can't be used in same data step.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that the reason ?&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 18:21:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294647#M61487</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-08-28T18:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294648#M61488</link>
      <description>&lt;P&gt;No longer recommended.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example - I can't find any reference to Do Over in 9.3/9.4 documentation.&lt;/P&gt;
&lt;P&gt;It's still supported as legacy code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wow...this apparently was from V7 which is in 2000.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/techsup/notes/v8/1/780.html" target="_blank"&gt;http://support.sas.com/techsup/notes/v8/1/780.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;Beginning with SAS OnlineDoc, Version 7-1, documentation for implicitly subscripted arrays and any related topics (e.g. DO OVER) has been removed. As noted in SAS Language: Reference, Version 6, First Edition, p. 297, implicit arrays are supported only for compatibility with previous releases of the SAS System. These obsolete features have been removed from the documentation to discourage their use in new program development.&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sun, 28 Aug 2016 18:57:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294648#M61488</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-28T18:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294649#M61489</link>
      <description>&lt;P&gt;Reeza, Thanks a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still using SAS OnLine Doc. of 9.2 version and beeing in age&amp;nbsp;of 70 explains it.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 19:14:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294649#M61489</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-08-28T19:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294657#M61490</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm still using SAS OnLine Doc. of 9.2 version and beeing in age&amp;nbsp;of 70 explains it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍🏽&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2016 20:34:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294657#M61490</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-28T20:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to divide and entire row by a constant?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294675#M61492</link>
      <description>It is IML thing. IML code is special for vector operation .</description>
      <pubDate>Mon, 29 Aug 2016 01:42:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-divide-and-entire-row-by-a-constant/m-p/294675#M61492</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-29T01:42:11Z</dc:date>
    </item>
  </channel>
</rss>

