{"id":1106,"date":"2020-05-29T00:00:00","date_gmt":"2020-05-29T00:00:00","guid":{"rendered":"https:\/\/qa.simplifimoney.com\/blog\/how-to-calculate-return-on-investment\/"},"modified":"2024-11-18T10:21:46","modified_gmt":"2024-11-18T18:21:46","slug":"how-to-calculate-return-on-investment","status":"publish","type":"post","link":"https:\/\/www.quicken.com\/blog\/how-to-calculate-return-on-investment\/","title":{"rendered":"How to Calculate Return on Investment (ROI)"},"content":{"rendered":"\n<p>At its heart, calculating return on investment or ROI is a way to measure how well your investments are doing. It\u2019s used by both businesses and individuals to decide where to invest their money (often referred to as capital.)<\/p>\n\n\n\n<p>This post walks step-by-step through different ways to calculate return on investment to help you make more effective investment decisions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Return on Investment (ROI) Definition<\/h2>\n\n\n\n<p>Return on investment is a specific measure of how much money an investment has made relative to the cost of that investment. In other words, it\u2019s a quick way to see how well an investment is really doing.<\/p>\n\n\n\n<p>For example, let\u2019s say your tech startup collected $50,000 from in-app purchases last month. That might sound pretty good\u2014unless it cost you $100,000 in advertising to make that happen.<\/p>\n\n\n\n<p>That\u2019s why the formula used to calculate return on investment includes both your profits and the investment it took to make those profits.<\/p>\n\n\n\n<p>Return on Investment (ROI) Formula<\/p>\n\n\n\n<p>The return on investment (ROI) formula can help you understand how much you\u2019ve earned on an investment relative to its cost.<\/p>\n\n\n\n<p>You can use the ROI formula to calculate ROIs on various types of investments, including stocks and bonds, and it can be helpful when you\u2019re comparing two investments. You can also use it when <a href=\"https:\/\/www.quicken.com\/when-hold-and-when-fold-investment\">reviewing your portfolio<\/a> to understand which investments are performing better than others.<\/p>\n\n\n\n<p>Here\u2019s the return on investment formula:<\/p>\n\n\n\n<p class=\"rtecenter\">ROI = (Current Value &#8211; Cost) \/ Cost<\/p>\n\n\n\n<p class=\"rtecenter\">The first part (Current Value &#8211; Cost) tells you how much you made. If you invested $300 in a certain stock and now that stock is worth $360 (its current value), you made $60.<\/p>\n\n\n\n<p class=\"rtecenter\">You divide that amount by the original investment ($300) to get your ROI.<\/p>\n\n\n\n<p class=\"rtecenter\">ROI = ($360 &#8211; $300) \/ $300<\/p>\n\n\n\n<p class=\"rtecenter\">ROI = $60 \/ $300<\/p>\n\n\n\n<p class=\"rtecenter\">ROI = 0.2<\/p>\n\n\n\n<p>You can multiply your ROI by 100 to see it as a percentage. In this case, 0.2 x 100 = 20%. So, if you bought a stock at $300 and it\u2019s now worth $360, the ROI of that investment is 20%.<\/p>\n\n\n\n<p>In the world of finance, determining the true ROI of complex investments can get much more detailed, and we\u2019ll get into some more complicated examples below. Still, this simple calculation is a quick way to get at the heart of what ROI is trying to measure: how well an investment is doing for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Return on Investment (ROI) Calculator<\/strong><\/h2>\n\n\n\n<p>You can use a return on investment calculator to calculate your ROI the easy way. In the calculator below, enter the amount you invested in the first box. Enter the number you end up with (the current value) in the second box.<\/p>\n\n\n\n<p>In the example above, you\u2019d enter $300 in the <strong>Amount Invested<\/strong> box for your investment and $360 in the <strong>Amount Returned<\/strong> box for the amount returned. If you try it, you\u2019ll see that the return is expressed as a percentage. In this case, 20%.<\/p>\n\n\n\n<p>The investment gain is also calculated for you (the top part of the return on investment formula). That\u2019s provided at the bottom, labeled <strong>Investment Gain<\/strong>.<\/p>\n\n\n\n<p>One thing that won\u2019t tell you, though, is how long it took to make that return. ROI doesn\u2019t take into account the amount of time that\u2019s gone by.<\/p>\n\n\n\n<div class=\"roi-tool\" style=\"border: 2px solid black;max-width:400px;\">\n  <div class=\"header\" style=\"padding:2rem;background-color:#dfdfdf\">\n    <h3 id=\"roi-calc-title\" style=\"font-size:26px;padding-bottom:0;margin-bottom:0;\">Return on Investment Calculator (ROI)<\/h3>\n  <\/div>\n  <div class=\"user-input\" style=\"padding:2rem;\">\n    <form id=\"calForm\">\n\n      <p><span class=\"labels\" style=\"font-weight:600;\">Amount Invested<\/span><br>\n      $ <input id=\"cost_input\" type=\"text\" name=\"cost_input\" value=\"0.00\" style=\"display:inline;max-width:150px;\" onchange=\"\"><\/p>\n\n      <p><span class=\"labels\" style=\"font-weight:600;\">Amount Returned<\/span><br>\n      $ <input id=\"gains_input\" type=\"text\" name=\"gains_input\" value=\"0.00\" style=\"display:inline;max-width:150px;\"><\/p>\n\n    <button id=\"roiClick\" name=\"submit\" style=\"margin-top:1rem;margin-bottom:1rem;\">Calculate<\/button>\n<\/form>\n  <\/div>\n  <div class=\"calculated\" style=\"background-color:#777;padding:2rem;color:white;\">\n  <p><span class=\"labels\" style=\"font-weight:600;color:white;\">ROI<\/span><br>\n  <span id=\"roi\" style=\"font-size:28px;font-weight:700;color:white;\">0.00%<\/span><\/p>\n\n  <p><span class=\"labels\" style=\"font-weight:600;color:white;\">Investment Gain<\/span><br>\n  <span id=\"gains\" style=\"font-size:22px;font-weight:600;color:white;\">$ 0.00<\/span><\/p>\n  <\/div>\n\n<script>\n\nvar cost, returnVal;\n\nfunction calRoi() {\n    var cost = document.getElementById(\"cost_input\").value;\n    var gains = document.getElementById(\"gains_input\").value;\n\n    var roiVal = roi(cost, gains);\n    var calc = {\n        'cost' : '$' + cost,\n        'gains' : '$' + gains,\n        'roi' : roiVal,\n        'totalGains' : '$' + parseFloat(gains-cost).toFixed(2)\n    };\n\n    updateThis(calc);\n}\n\nfunction roi(cost, gains) {\n    cost = parseFloat(cost).toFixed(2);\n    gains = parseFloat(gains).toFixed(2);\n\n    var top, bottom;\n    top = gains - cost;\n    bottom = top \/ cost;\n    var roiVal = bottom;\n\n    roiVal = roiVal * 100;\n    return roiVal.toFixed(2) + '%';\n}\n\nfunction updateThis(stuff) {\n    document.getElementById('roi').innerHTML = stuff.roi.toString().replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n    document.getElementById('gains').innerHTML = stuff.totalGains.toString().replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n}\n\ndocument.getElementById('calForm').addEventListener('submit', function(e){\n    e.preventDefault();\n    calRoi();\n});\n\n<\/script>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Return on Investment (ROI) Examples<\/h2>\n\n\n\n<p>Return on investment is a critical tool for both individual investors and businesses in evaluating how well a given investment is doing. Here are just a few examples of how it can be used in real-world situations:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Investing in stocks<\/strong><\/h3>\n\n\n\n<p>ROI is often used by investors to evaluate how well different stocks are doing. Investors compare the ROIs of those stocks to help them decide where to invest their money as they move forward.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Home improvements<\/strong><\/h3>\n\n\n\n<p>Homeowners can also use ROI to evaluate home improvement projects. Major changes to a home, such as a new bathroom or the addition of a deck, often add to the home\u2019s market value. Divide that additional value by the cost of the improvement to get the ROI of a specific project.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Advertising campaigns<\/strong><\/h3>\n\n\n\n<p>Companies often run advertisements to boost sales. To compare the effectiveness of different ads or campaigns, they calculate the ROI of each one.<\/p>\n\n\n\n<p>Advertising often uses a slightly different calculation for ROI, simply dividing the income an ad generates by the cost of that ad. In that case, an ROI that\u2019s higher than 1 means the ad is making money. For example, if an ad brought in $1,200 in revenue and it cost $1,000 to run, the ROI would be 1.2, or 120%.<\/p>\n\n\n\n<p>You can also learn something about that ad\u2019s effectiveness from the ROI itself, without knowing anything about the actual numbers. A reported ROI of 1.05, for example, would mean that for every $100 the company is spending, the ad is generating $105 in revenue.<\/p>\n\n\n\n<p>On the other hand, an ROI that\u2019s lower than 1 would mean the ad was losing money. A reported ROI of 0.95 or 95% would mean the ad was only bringing in $95 for every $100 spent.<\/p>\n\n\n\n<p>If you\u2019re using ROI in your business, remember that it\u2019s not just one sale that matters but how many more sales you might make to that customer over a lifetime. Seen in this light, it\u2019s obvious that something as \u201csimple\u201d as ROI can actually be a highly complex calculation!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate Rate of Return (ROR)<\/h2>\n\n\n\n<p>Rate of return (ROR) is the same thing as return on investment (ROI), and you can use the same formula (or the same calculator above) to calculate it. The main difference is that people include the amount of time that\u2019s gone by when thinking and talking about rate of return.<\/p>\n\n\n\n<p>For example, in the stock example earlier, an investment of $300 that is now worth $360 has an ROI of 20%.<\/p>\n\n\n\n<p>If it took the investment one year to grow from $300 to $360, the <em>rate of return<\/em> on that investment would be 20% <em>per year<\/em>. In fact, the usual assumption about ROR is that it means per year if it doesn\u2019t specifically say something else.<\/p>\n\n\n\n<p>It might not sound like there\u2019s much of a difference between ROI ad ROR, but the time factor that ROR adds can make a big difference. An ROI of 20% is great if it took one year for your investment to grow by 20%. It\u2019s not nearly as great if it took 10 years.<\/p>\n\n\n\n<p>That\u2019s why time periods are important when you\u2019re <a href=\"https:\/\/www.quicken.com\/investments-set-goals-and-adopt-strategy\">considering new opportunities<\/a> or revisiting long-term holdings. An investment with a 100% ROI (after five years) will earn you less money than an investment that maintains a 25% annual ROR over five years.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate Total Return on Investment<\/h2>\n\n\n\n<p>Building on the ROI and ROR formula, you might sometimes need to add additional forms of income or expenses to calculate your total return from an investment. Some stocks pay out dividends, bonds could offer coupons, and you may have to pay brokerage fees for each trade.<\/p>\n\n\n\n<p>The total return formula takes interest, dividends, capital gains, and expenses into account to help you understand your actual rate of return in a specific time period\u2014again, generally over a year.<\/p>\n\n\n\n<p>For a stock, the total return formula is:<\/p>\n\n\n\n<p>Total Return = [(Current Value &#8211; Cost) + Dividends &#8211; Expenses]\/Cost<\/p>\n\n\n\n<p>For example, if a stock increased from $100 to $110 over a year and also paid you a $4 dividend, but there was a trade fee of $10 when you bought it, the equation is:<\/p>\n\n\n\n<p>Total Return = [(110 &#8211; 100) + 4 &#8211; 10]\/100 = 0.04<\/p>\n\n\n\n<p>Or, 4% if you multiply by 100 to get the percentage total return.<\/p>\n\n\n\n<p>Because the <a href=\"https:\/\/www.fool.com\/investing\/how-to-calculate-total-stock-returns.aspx\">total return<\/a> includes the income from an investment as well as the investment\u2019s growth, this is a better way to compare investments that have different dividend rates. In fact, some people and companies use this more inclusive equation when calculating ROI and ROR, even if they don\u2019t specifically refer to it as \u201ctotal return.\u201d<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Total Return on Investment (ROI) Calculator<\/h2>\n\n\n\n<p>If you want to calculate the total return on a given investment, you can use the calculator below.<\/p>\n\n\n\n<p>For the stock in the example above, the current value is $110 (what it\u2019s worth now). The cost is $100 (what you paid for it originally). The dividends are $4, and the expenses are $10. If you enter those in the calculator, you\u2019ll get a result of 4%.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate Annualized Return on Investment (ROI)<\/h2>\n\n\n\n<p>If you\u2019re holding an investment for multiple years, you may want to calculate your annualized return on investment (AROI). This tells you the average annual gains (or losses) from that investment, which you can then compare to a broad index to see if you \u201cbeat\u201d the market. This is often called the annualized rate of return instead of an annualized ROI since it takes time into account.<\/p>\n\n\n\n<p>The annualized ROI formula builds off the simple ROI equation:<\/p>\n\n\n\n<p>AROI = [(1 + ROI)<sup>1\/n<\/sup> &#8211; 1<\/p>\n\n\n\n<p>The n represents the number of years you\u2019ve held the investment. If it\u2019s been less than a year, or part of a year, you can use a decimal. For example, 1\/1.5 if you\u2019ve held an investment for a year and a half.<\/p>\n\n\n\n<p>Using the example investment from above, say you hold the stock for five years, its value increases to $175, and it pays out the $4 dividend five times. Here are the ROI and annualized ROI equations:<\/p>\n\n\n\n<p>ROI = [(175 &#8211; 100) + (4 x 5) &#8211; 10]\/100 = 0.85 or 85%<\/p>\n\n\n\n<p>AROI = [(1 + 0.85)<sup>1\/5<\/sup> &#8211; 1 = 0.13 or 13%<\/p>\n\n\n\n<p>As with the simple rate of return formula, you can use the AROI equation to compare your investments and see which ones are performing best.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Comparing Investments and Annualized Returns on Investment (ROI)<\/h2>\n\n\n\n<p>You can calculate the annualized return for a given stock or investment over any period of time. This has a lot of advantages when it comes to making investment decisions.<\/p>\n\n\n\n<p>For one thing, you can easily compare the returns of stocks you\u2019ve owned for different amounts of time. Annualize the returns of those stocks to compare their performance in a meaningful way.<\/p>\n\n\n\n<p>You can also annualize returns over longer periods of time to \u201ceven out\u201d the normal fluctuations of the stock market. Use several years\u2019 worth of history to find the annualized rate of return of a stock over the past 5 or 10 years. How did a stock do this past year compared to its historical rate of return? You can find that out too.<\/p>\n\n\n\n<p>You can even annualize returns to compare entirely different kinds of investments. For example, should you put more money into that mutual fund or put it into your investment real estate company to purchase another property? Annualize the return on both the mutual fund and the real estate venture to see if either one significantly outweighs the other.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Putting the ROI Equations Into Action<\/h2>\n\n\n\n<p>The ROI and AROI formulas are incredibly versatile tools with a wide range of uses.<\/p>\n\n\n\n<p>Use them to calculate returns on a single position, or use them to analyze one sector of your portfolio against another. Compare recent tech stock performance against your historic average, or compare returns on the <a href=\"\/blog\/portfolio-management\">funds you manage yourself<\/a> against the investments a financial planner oversees for you.<\/p>\n\n\n\n<p>These kinds of results can help you decide which positions to hold, sell, or buy when you\u2019re adjusting your portfolio. You can even swap out fees or expenses to see how changing investments or platforms could impact your returns.<\/p>\n\n\n\n<p>Still, these tools are only the tip of the iceberg when it comes to investment analysis.<\/p>\n\n\n\n<p>For example, you might be considering two investments that have very different risk profiles\u2014such as a small-cap stock and a treasury bond. Even if their ROIs over the last two years are identical, the ROI and AROI formulas don\u2019t consider risk.<\/p>\n\n\n\n<p>In that case, you might want to calculate the <a href=\"https:\/\/www.wallstreetmojo.com\/risk-adjusted-returns\/\">risk-adjusted return<\/a> to determine which will fit best in your portfolio.<\/p>\n\n\n\n<p>Another thing that comes into play when you compare different investments against each other is the expected timing of the investment returns. For example, investing in an ongoing private business might entitle you to a certain portion of the company\u2019s profits at the end of each year. On the other hand, investing in a long-term venture might not provide any cash return for the first 5 years.<\/p>\n\n\n\n<p>To address this difference, investors might turn to yet another tool: internal rate of return, or IRR.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the Internal Rate of Return (IRR)?<\/h2>\n\n\n\n<p>Internal rate of return is an investment tool that analyzes the <em>equivalent<\/em> return of an investment based on the payoff, or payoffs, you <em>expect<\/em> to get from that investment.<\/p>\n\n\n\n<p>It\u2019s easier to see with an example. Let\u2019s say you\u2019re thinking about investing in a startup. They\u2019re asking you for $100,000, and they expect to need 3 years to develop their new product. After that, they\u2019re projecting that you\u2019ll earn $25,000 in year 4, $30,000 in each of the next 2 years, $50,000 in each of the 4 years after that, and $20,000 for 3 more years.<\/p>\n\n\n\n<p>On the other hand, you could just invest your money in the stock market, with historical returns of around 10% per year.<\/p>\n\n\n\n<p>So, which is better?<\/p>\n\n\n\n<p>Internal rate of return calculates an equivalent rate of return for that first investment, so you can compare apples to apples. (At least, sort of.) In this case, an <a href=\"https:\/\/www.calculatestuff.com\/financial\/irr-calculator\">IRR calculator<\/a> will tell you that all those cash flows have a rate of return that\u2019s equivalent to 17.219%.<\/p>\n\n\n\n<p>The problem, of course, is that these are only <em>expected<\/em> cash flows. You can\u2019t know for sure that the investment will come through. Every investment has that element of risk, and some investments carry more risk than others.<\/p>\n\n\n\n<p>Still, 17.219% is a pretty good return, so it might be worth the additional risk of an unknown venture.<\/p>\n\n\n\n<p>No matter what you would decide in this hypothetical, the point is that IRR gives you a way to more easily compare that investment to other possibilities.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How is ROI Different from IRR?<\/h2>\n\n\n\n<p>To get some insight into the difference between ROI and IRR, let\u2019s calculate the overall ROI of that hypothetical investment and see how it differs from the IRR.<\/p>\n\n\n\n<p>By the end of that 13-year investment, you\u2019re expecting to get a total of $345,000 if you add up all those payouts. $25,000 in year 4, $30,000 in years 5 and 6, and so on.<\/p>\n\n\n\n<p>Using the ROI calculator, if you enter 100,000 for the amount invested and 345,000 for the amount returned, you\u2019ll get an ROI of 245%. That\u2019s a huge difference from the IRR of 17.219%.<\/p>\n\n\n\n<p>Why are they so different? Because ROI ignores time.<\/p>\n\n\n\n<p>The real takeaway here is that it doesn\u2019t just matter how much money you could potentially get from an investment. It also matters when you\u2019re going to get it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pros and Cons of ROI Formulas<\/h2>\n\n\n\n<p>As you\u2019ve already seen, each formula has different uses. ROI is the simplest, but it also gives you the least information. Annualized ROR and IRR add in the factor of time, but they\u2019re more complicated to use.<\/p>\n\n\n\n<p>Most importantly, none of these factor in the risk of an investment, which is extremely difficult to quantify.<\/p>\n\n\n\n<p>Because of that risk factor, no investment tool should be taken as a sure way to evaluate a potential investment. There\u2019s no such thing as certainty.<\/p>\n\n\n\n<p>Instead, use tools like these along with your own best judgment to evaluate potential investments, and factor in <a href=\"\/blog\/conquer-your-fear-investing\">your comfort level<\/a> in making investment decisions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Knowing how to calculate return on investment (ROI) and annualized ROI can help you make better investment decisions. Here\u2019s how to do it.<\/p>\n","protected":false},"author":59,"featured_media":1110,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_seopress_robots_primary_cat":"none","_seopress_titles_title":"How to Calculate Return on Investment (ROI) | Quicken","_seopress_titles_desc":"Knowing how to calculate return on investment (ROI) and annualized ROI can help you make better investment decisions. Here\u2019s how to do it.","_seopress_robots_index":"","inline_featured_image":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-1106","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-investing"],"acf":[],"jetpack_featured_media_url":"https:\/\/www.quicken.com\/blog\/wp-content\/uploads\/2022\/08\/QuickenCalculateROI1.jpg","_links":{"self":[{"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/posts\/1106","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/users\/59"}],"replies":[{"embeddable":true,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/comments?post=1106"}],"version-history":[{"count":32,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/posts\/1106\/revisions"}],"predecessor-version":[{"id":5094,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/posts\/1106\/revisions\/5094"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/media\/1110"}],"wp:attachment":[{"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/media?parent=1106"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/categories?post=1106"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.quicken.com\/blog\/wp-json\/wp\/v2\/tags?post=1106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}