<?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>question Re: The NPV calculation on Demand and Project form financial tab? in SPM forum</title>
    <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015566#M20695</link>
    <description>&lt;P&gt;Hi Chandler,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the below example to understand how NPV is calculated:&lt;/P&gt;
&lt;P&gt;Total planned cost of FY22 (Current year): 180000&lt;/P&gt;
&lt;P&gt;Total planned benefit of FY22 (Current year): 240000&lt;/P&gt;
&lt;P&gt;Total planned cost of FY23 (Current year + 1): 180000&lt;/P&gt;
&lt;P&gt;Total planned benefit of FY22 (Current year + 1): 240000&lt;/P&gt;
&lt;P&gt;ROI = Total Planned Benefit - Total Planned cost = 480000-360000 = 120000&lt;/P&gt;
&lt;P&gt;NPV = (240000-180000) + [(240000-180000)/(1+0.11)] = 114054&lt;/P&gt;
&lt;P&gt;The discount rate is applied to the planned cost and benefits amount for future calendar year to the power of difference between the future year and the current year, which in the above example is 1.&lt;/P&gt;</description>
    <pubDate>Tue, 05 Apr 2022 09:06:23 GMT</pubDate>
    <dc:creator>Vinay3</dc:creator>
    <dc:date>2022-04-05T09:06:23Z</dc:date>
    <item>
      <title>The NPV calculation on Demand and Project form financial tab?</title>
      <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015562#M20691</link>
      <description>&lt;P&gt;I have found many articles on it but still not able to actually get the calculation work which gives the result as the populated number in NPV.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see the formula many places but what is the t in the formulas]? Time period then what, year of the cost plan or fiscal period?&lt;BR /&gt;Any detailed example?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 20:12:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015562#M20691</guid>
      <dc:creator>Chandler2</dc:creator>
      <dc:date>2022-03-31T20:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: The NPV calculation on Demand and Project form financial tab?</title>
      <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015563#M20692</link>
      <description>&lt;P&gt;Hello Chandler,&lt;BR /&gt;&lt;BR /&gt;This is the current NPV formula:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/103595i8304DBEC77E8447F/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The script where the NPV is calculated is the following one:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;IRRAndNPVAPI&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code that does the calculation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;netPresentValue: function(rate){
        var rate = rate/100, npv = this.args[0];
        for (var i = 1; i &amp;lt; this.args.length; i++) {
            npv +=(this.args[i] / Math.pow((1 + rate), i));
        }
        return Math.round(npv * 100) / 100;
    },&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps you!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please mark my answer as correct and helpful if it is relevant for you!&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Thanks,&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Filipe Cruz&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 21:17:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015563#M20692</guid>
      <dc:creator>Filipe Cruz</dc:creator>
      <dc:date>2022-03-31T21:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: The NPV calculation on Demand and Project form financial tab?</title>
      <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015564#M20693</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can you point me where this script is written.&lt;/P&gt;
&lt;P&gt;Q 1. So whatever you have in formula it is all exactly as it is?&lt;BR /&gt;&lt;BR /&gt;Q 2. What will be the value of n?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 10:51:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015564#M20693</guid>
      <dc:creator>Chandler2</dc:creator>
      <dc:date>2022-04-01T10:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: The NPV calculation on Demand and Project form financial tab?</title>
      <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015565#M20694</link>
      <description>Hi Chandler,

The script is "IRRAndNPVAPI".
N represents the current year.
You also need to check for other script includes invoking the one I mentioned. 
I'm not in front of the laptop, so I cannot point it out right now.

Please let me know if you need my assistance in this subject!

Best Regards,

Filipe Cruz</description>
      <pubDate>Fri, 01 Apr 2022 20:03:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015565#M20694</guid>
      <dc:creator>Filipe Cruz</dc:creator>
      <dc:date>2022-04-01T20:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: The NPV calculation on Demand and Project form financial tab?</title>
      <link>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015566#M20695</link>
      <description>&lt;P&gt;Hi Chandler,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the below example to understand how NPV is calculated:&lt;/P&gt;
&lt;P&gt;Total planned cost of FY22 (Current year): 180000&lt;/P&gt;
&lt;P&gt;Total planned benefit of FY22 (Current year): 240000&lt;/P&gt;
&lt;P&gt;Total planned cost of FY23 (Current year + 1): 180000&lt;/P&gt;
&lt;P&gt;Total planned benefit of FY22 (Current year + 1): 240000&lt;/P&gt;
&lt;P&gt;ROI = Total Planned Benefit - Total Planned cost = 480000-360000 = 120000&lt;/P&gt;
&lt;P&gt;NPV = (240000-180000) + [(240000-180000)/(1+0.11)] = 114054&lt;/P&gt;
&lt;P&gt;The discount rate is applied to the planned cost and benefits amount for future calendar year to the power of difference between the future year and the current year, which in the above example is 1.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 09:06:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/spm-forum/the-npv-calculation-on-demand-and-project-form-financial-tab/m-p/1015566#M20695</guid>
      <dc:creator>Vinay3</dc:creator>
      <dc:date>2022-04-05T09:06:23Z</dc:date>
    </item>
  </channel>
</rss>

