How to Calculate Discount Rate Excel

Weighted Average Cost of Capital (Discount Rate) Calculator

Resulting Discount Rate

function calculateDiscountRate() { var E = parseFloat(document.getElementById('equityVal').value); var D = parseFloat(document.getElementById('debtVal').value); var Re = parseFloat(document.getElementById('costEquity').value) / 100; var Rd = parseFloat(document.getElementById('costDebt').value) / 100; var T = parseFloat(document.getElementById('taxRate').value) / 100; if (isNaN(E) || isNaN(D) || isNaN(Re) || isNaN(Rd) || isNaN(T)) { alert("Please enter valid numerical values for all fields."); return; } var V = E + D; if (V === 0) { alert("Total value (Equity + Debt) cannot be zero."); return; } // WACC Formula: (E/V * Re) + (D/V * Rd * (1 – T)) var wacc = ((E / V) * Re) + ((D / V) * Rd * (1 – T)); var waccPercentage = (wacc * 100).toFixed(2); document.getElementById('waccResultBox').style.display = 'block'; document.getElementById('waccValue').innerHTML = waccPercentage + "%"; document.getElementById('waccExplanation').innerHTML = "This WACC represents the average rate a company pays to finance its assets, used as the discount rate for cash flow valuations."; }

How to Calculate Discount Rate in Excel

The discount rate is a critical financial metric used to determine the present value of future cash flows. In corporate finance, the most common way to calculate this rate is through the Weighted Average Cost of Capital (WACC). This represents the blended cost of both equity and debt financing.

The WACC Formula

To calculate the discount rate (WACC) manually or in Excel, use the following formula:

WACC = (E/V × Re) + [(D/V × Rd) × (1 – T)]
  • E: Market value of equity
  • D: Market value of debt
  • V: Total value (Equity + Debt)
  • Re: Cost of equity
  • Rd: Cost of debt
  • T: Corporate tax rate

Step-by-Step Excel Guide

Follow these steps to build your own discount rate calculator in Excel:

  1. Input Data: Enter your Equity, Debt, Cost of Equity, Cost of Debt, and Tax Rate into cells A1 through A5.
  2. Calculate Total Value: In cell B1, use =A1+A2 to find the total firm value.
  3. Calculate Equity Weight: In cell B2, use =A1/B1.
  4. Calculate Debt Weight: In cell B3, use =A2/B1.
  5. Apply the WACC Formula: In cell B4, enter: =(B2*A3)+(B3*A4*(1-A5)).
  6. Format: Change the format of cell B4 to "Percentage" to see your discount rate.

Practical Example

Imagine a company with the following financials:

Component Value
Market Value of Equity $1,000,000
Market Value of Debt $400,000
Cost of Equity 10%
Cost of Debt 6%
Tax Rate 25%

Calculation:
Total Value = $1,400,000
Equity Portion = (1,000,000 / 1,400,000) * 0.10 = 0.0714
Debt Portion = (400,000 / 1,400,000) * 0.06 * (1 – 0.25) = 0.0128
WACC = 8.42%

Why the Discount Rate Matters

The discount rate is the engine of the Net Present Value (NPV) calculation. If your discount rate is too low, you may overestimate the value of a project. If it is too high, you might pass on profitable opportunities. In Excel, once you have calculated this rate, you can plug it directly into the =NPV(rate, value1, value2...) function to assess investment viability.

Leave a Comment