<?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: Doubt about IRR in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431241#M68665</link>
    <description>&lt;P&gt;If you want the yearly interest rate, do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
init = 2462.5;
yearly = 47.22 * 12;
rate_percent = irr(1, -init, yearly, yearly, yearly, yearly, yearly, yearly);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 26 Jan 2018 12:43:24 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-01-26T12:43:24Z</dc:date>
    <item>
      <title>Doubt about IRR</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431232#M68663</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a litle problem at work and i have difficulty solving it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here it goes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use the IRR function (just like excel) to calculate what we call TAEG / interest rate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem i using the IRR function in a pratical way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically i have (for example) a stable monthly payout of 47.22 € and i want to use the IRR to calculate what kind of rate i will have after 72 months. The initial outlay is&amp;nbsp;2462.5 for example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In sas i tried using the formula&amp;nbsp;irr(12, -2462.5, 47.22, 47.22, 47.22, 47.22, 47.22, 47.22) and it returns -99€.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i assume is that i have to put 1 as the beginning value and put the monthly payout 72 times...but it is just not pratical, even more since i have more than one example.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Isn't there a simpler way when you have a stable monthly payout? Should i try to do a cycle?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help guys.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 12:20:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431232#M68663</guid>
      <dc:creator>TMD_</dc:creator>
      <dc:date>2018-01-26T12:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt about IRR</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431241#M68665</link>
      <description>&lt;P&gt;If you want the yearly interest rate, do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
init = 2462.5;
yearly = 47.22 * 12;
rate_percent = irr(1, -init, yearly, yearly, yearly, yearly, yearly, yearly);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jan 2018 12:43:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431241#M68665</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-26T12:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt about IRR</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431769#M68686</link>
      <description>&lt;P&gt;Does not work completly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using this in excel :&amp;nbsp;=+(1+IRR(G54:G174))^12-1&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which means that in G54 to G174 there is in G54 the -2462.5 € and from G55 to G126 there is only the value 48.71€.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final result is 13.18% .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In sas using the formula you gave me it hits&amp;nbsp;8.4560170962.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am i doing wrong?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 13:08:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431769#M68686</guid>
      <dc:creator>TMD_</dc:creator>
      <dc:date>2018-01-29T13:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt about IRR</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431784#M68688</link>
      <description>&lt;P&gt;Basically if i do irr(12, -initialpayout, monthly pay (n) to (n+1))&amp;nbsp; it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i have 72 months, it is not very pratical....any work around?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 14:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Doubt-about-IRR/m-p/431784#M68688</guid>
      <dc:creator>TMD_</dc:creator>
      <dc:date>2018-01-29T14:27:08Z</dc:date>
    </item>
  </channel>
</rss>

