<?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: Loan Calculator in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/1579051#M4922</link>
    <description>&lt;P&gt;Hi Dychechris....could you kindly share the loan calculation pbix file and happy new sir.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jan 2021 10:04:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-01-04T10:04:34Z</dc:date>
    <item>
      <title>Loan Calculator</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/242585#M1077</link>
      <description>&lt;P&gt;This report uses three what if parameters to calculate the monthly payments, total interest and the total amount payable for a loan. Simply play with the sliders to see how it affects the payments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLEASE NOTE This calculator is just to demonstrate the What If parameters and should not be used for real financial calculations.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMzFjZDgxODUtZjllNi00MTQyLTljN2MtNjQzMzc4MzI0OWM1IiwidCI6ImZhYWVhZWZjLTEyNDMtNGE5ZC1iOTRkLWVhNGZhZDJiNzUwOCJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 00:06:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/242585#M1077</guid>
      <dc:creator>dychechris</dc:creator>
      <dc:date>2017-08-31T00:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Loan Calculator</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/386647#M1752</link>
      <description>&lt;P&gt;I'm trying to recreate this exact function. Would it be possible for you to share the Power Bi file?&lt;BR /&gt;&lt;BR /&gt;Thank you!!!!!!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stephen&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 20:16:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/386647#M1752</guid>
      <dc:creator>sbone</dc:creator>
      <dc:date>2018-03-29T20:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Loan Calculator</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/1579051#M4922</link>
      <description>&lt;P&gt;Hi Dychechris....could you kindly share the loan calculation pbix file and happy new sir.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2021 10:04:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/1579051#M4922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-04T10:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Loan Calculator</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/3510204#M11377</link>
      <description>&lt;P&gt;Assuming you have a table named 'Loans' with the following columns: 'LoanAmount,' 'InterestRate,' 'LoanTerm,' and 'StartDate,' here's how you can use&lt;STRONG&gt; &lt;A href="https://loan.calculator.bot/" target="_self"&gt;loan calculator bot&lt;/A&gt;&lt;/STRONG&gt; the monthly payment and total interest paid:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;To calculate the monthly payment, you can use the PMT function in DAX. The formula might look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MonthlyPayment = -PMT(Loans[InterestRate] / 12, Loans[LoanTerm], Loans[LoanAmount])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this formula:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Loans[InterestRate] / 12 calculates the monthly interest rate (assuming the annual interest rate is in decimal form).&lt;/LI&gt;&lt;LI&gt;Loans[LoanTerm] is the total number of monthly payments.&lt;/LI&gt;&lt;LI&gt;Loans[LoanAmount] is the principal loan amount&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;To calculate the total interest paid over the life of the loan&amp;nbsp;, you can use the following DAX formula:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TotalInterestPaid =
VAR MonthlyPayment = -PMT(Loans[InterestRate] / 12, Loans[LoanTerm], Loans[LoanAmount])
RETURN
    (MonthlyPayment * Loans[LoanTerm]) - Loans[LoanAmount]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this formula:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;MonthlyPayment is calculated using the same PMT function as in the previous formula.&lt;/LI&gt;&lt;LI&gt;(MonthlyPayment * Loans[LoanTerm]) - Loans[LoanAmount] calculates the total interest paid by subtracting the initial loan amount from the sum of all monthly payments.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Once you've created these DAX measures, you can use them in your Power BI visuals to display the monthly payments and total interest paid for each loan.&lt;/P&gt;&lt;P&gt;Source:&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;A href="https://chat.openai.com/" target="_self"&gt;https://chat.openai.com/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 10:12:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Loan-Calculator/m-p/3510204#M11377</guid>
      <dc:creator>calculating</dc:creator>
      <dc:date>2024-03-22T10:12:29Z</dc:date>
    </item>
  </channel>
</rss>

