<?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: Do LOOPS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414017#M101404</link>
    <description>&lt;P&gt;And what are the values you would expect?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Nov 2017 14:45:17 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-11-16T14:45:17Z</dc:date>
    <item>
      <title>Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414004#M101400</link>
      <description>&lt;P&gt;on January 1 of each year,$5000 is invested in an amount .complete the data step with do loop to determine the value of the account after 15 years 1) if a constant annual invest rate of 10% is expected .2)if a compounding annual interest rate of 10 % is expected .?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:28:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414004#M101400</guid>
      <dc:creator>Aswin1099</dc:creator>
      <dc:date>2017-11-16T14:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414007#M101401</link>
      <description>&lt;P&gt;This homework assignment has been posted multiple times here. Use the search function.&lt;/P&gt;
&lt;P&gt;When posting a question, always show the effort you have already made (code &amp;amp; log), and where it doesn't do what you expect.&lt;/P&gt;
&lt;P&gt;We're not here to support lazy students, but help people who make an honest effort at solving their issue themselves.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:31:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414007#M101401</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-16T14:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414009#M101402</link>
      <description>&lt;P&gt;I have tried this but i think both of them are wrong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*1. (1) DO LOOP- CONSTANT ANNUAL INTEREST RATE OF 10% */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data earning;&lt;BR /&gt;do year= 1 to 15;&lt;BR /&gt;rate=0.1;&lt;BR /&gt;amount+5000;&lt;BR /&gt;amount+(amount*0.1);&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/*1. (2) DO LOOP- COMPOUNDING ANNUAL INTEREST RATE OF 10% */&lt;BR /&gt;&lt;BR /&gt;data earning2;&lt;BR /&gt;do year= 1 to 15;&lt;BR /&gt;rate=0.1;&lt;BR /&gt;amount+5000;&lt;BR /&gt;earned+(amount+earned)*rate;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:33:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414009#M101402</guid>
      <dc:creator>Aswin1099</dc:creator>
      <dc:date>2017-11-16T14:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414017#M101404</link>
      <description>&lt;P&gt;And what are the values you would expect?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:45:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414017#M101404</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-16T14:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414020#M101406</link>
      <description>&lt;P&gt;SAS also has a number of financial functions and/or options for the FINANCE function that allow many calculations of this specific type without any looping.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:56:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414020#M101406</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-16T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414025#M101408</link>
      <description>&lt;P&gt;DO LOOPS (1) SIMPLE INTEREST-&lt;SPAN&gt;&amp;nbsp;interest will calculate every year but that interest will add in amount after 15 years&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;(2) COMPOUND INTEREST-&lt;SPAN&gt;every year interest will add in amount&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 15:03:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414025#M101408</guid>
      <dc:creator>Aswin1099</dc:creator>
      <dc:date>2017-11-16T15:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Do LOOPS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414026#M101409</link>
      <description>DO LOOPS (1) SIMPLE INTEREST- interest will calculate every year but that interest will add in amount after 15 years&lt;BR /&gt;(2) COMPOUND INTEREST-every year interest will add in amount</description>
      <pubDate>Thu, 16 Nov 2017 15:03:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Do-LOOPS/m-p/414026#M101409</guid>
      <dc:creator>Aswin1099</dc:creator>
      <dc:date>2017-11-16T15:03:39Z</dc:date>
    </item>
  </channel>
</rss>

