MUTUAL FUNDS SIP CALCULATOR 2024
Mutual Funds SIP Calculator Monthly Investment Amount (₹): Expected Annual Rate of Return (%): Investment Period (Years): Calculate SIP const monthlyRate = rateOfReturn / 1200; const totalMonths = investmentPeriod * 12; const futureValue = investmentAmount * (((Math.pow(1 + monthlyRate, totalMonths)) – 1) / monthlyRate); document.getElementById(‘result’).innerHTML = `The future value of your SIP investment is ₹${futureValue.toFixed(2)}`; … Read more