An endowment spending rate determines the portion of an endowment fund's market value that is withdrawn annually to support the organization's mission. Balancing current spending needs with the preservation of purchasing power for future generations (intergenerational equity) is the primary goal of any endowment policy.
The Market Value Method
The calculator above utilizes the "Percentage of Market Value" method, which is one of the most common approaches used by universities and non-profits. The spending amount is calculated by applying a fixed percentage (typically between 4% and 5%) to the endowment's market value.
To avoid volatility in annual budgets caused by market fluctuations, many institutions use a moving average of the endowment's value over the past 12 quarters (3 years) or 20 quarters (5 years) as the input for "Endowment Market Value" rather than the spot value at the fiscal year-end.
Key Metrics Explained
Target Spending Rate: The percentage of assets designated for operations. A common standard is 5% to comply with IRS regulations for private foundations, though universities often range from 4% to 5.5%.
Management Fees: Investment management and administrative costs reduce the net return. These must be earned back by the portfolio in addition to the spending distribution.
Required Return: To maintain the endowment's purchasing power in perpetuity, the investment portfolio must generate a return equal to: Spending Rate + Inflation + Fees. If returns fall below this threshold, the real value of the principal declines.
Inflation Considerations
Inflation erodes the purchasing power of the dollar. For higher education endowments, the Higher Education Price Index (HEPI) is often used instead of the standard CPI because costs for universities (salaries, books, utilities) often rise faster than general consumer goods.
function calculateDistribution() {
// Get Inputs
var endowmentVal = parseFloat(document.getElementById('endowmentValue').value);
var spendRate = parseFloat(document.getElementById('spendingRate').value);
var adminRate = parseFloat(document.getElementById('adminFees').value);
var inflation = parseFloat(document.getElementById('inflationRate').value);
// Validation
if (isNaN(endowmentVal) || endowmentVal < 0) {
alert("Please enter a valid Endowment Market Value.");
return;
}
if (isNaN(spendRate) || spendRate < 0) {
alert("Please enter a valid Spending Rate.");
return;
}
// Handle optional fields
if (isNaN(adminRate)) adminRate = 0;
if (isNaN(inflation)) inflation = 0;
// Calculations
// 1. Annual Distribution
var distributionAmount = endowmentVal * (spendRate / 100);
// 2. Fee Cost
var feeAmount = endowmentVal * (adminRate / 100);
// 3. Total Outflow
var totalOutflowAmount = distributionAmount + feeAmount;
// 4. Required Return (Nominal Return needed to keep principal flat in real terms)
// Formula: Spending Rate + Admin Fees + Inflation
var requiredReturnPct = spendRate + adminRate + inflation;
// Formatting Helper
var formatCurrency = function(num) {
return "$" + num.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
};
// Output Results
document.getElementById('annualDistribution').innerText = formatCurrency(distributionAmount);
document.getElementById('feeCost').innerText = formatCurrency(feeAmount);
document.getElementById('totalOutflow').innerText = formatCurrency(totalOutflowAmount);
document.getElementById('requiredReturn').innerText = requiredReturnPct.toFixed(2) + "%";
// Show Result Box
document.getElementById('esrResult').style.display = 'block';
}