<?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: How to calculate annually interest rate? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764645#M242214</link>
    <description>&lt;P&gt;Multiply by 1.0575.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Aug 2021 19:55:14 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-08-28T19:55:14Z</dc:date>
    <item>
      <title>How to calculate annually interest rate?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764644#M242213</link>
      <description>If i want to calculate interest rate 6 annually for amount 5000 then i will write 5000*1.06 but if i want to calculate same thing with interest rate 5.75?</description>
      <pubDate>Sat, 28 Aug 2021 19:46:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764644#M242213</guid>
      <dc:creator>AnuragRankja</dc:creator>
      <dc:date>2021-08-28T19:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate annually interest rate?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764645#M242214</link>
      <description>&lt;P&gt;Multiply by 1.0575.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Aug 2021 19:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764645#M242214</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-08-28T19:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate annually interest rate?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764648#M242216</link>
      <description>&lt;P&gt;SAS has also FINANCIAL FUNCTIONS for this type of calculations.&lt;/P&gt;
&lt;P&gt;Use for example the&amp;nbsp;FINANCE ACCRINT Function:&amp;nbsp;Computes the accrued interest for a security that pays periodic interest.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   issue        =mdy(8, 28, 2021);
   firstinterest=mdy(8, 28, 2022);
   settlement   =mdy(8, 28, 2022);
   rate         =0.0575;
   par          =5000;
   frequency    =1;
   basis        =1;
   r=finance('accrint', issue, firstinterest, settlement, rate, par, frequency, basis);
   put r=;
   my_r = 5000 * 1.0575;
   put my_r=;
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Aug 2021 20:34:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-annually-interest-rate/m-p/764648#M242216</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-28T20:34:32Z</dc:date>
    </item>
  </channel>
</rss>

