This function calculates residual values based upon the specified inputs. See calculate_residual_valuation_ebitda_multiples for EBITDA multiple method.

calculate_residual_valuation_cap_rates(
  cap_rates = c(0.05, 0.0525, 0.06, 0.2),
  net_operating_income = "$27,500,000",
  cost_of_sale = "5%",
  debt_balance = "$350,000,000",
  return_wide = T
)

Arguments

cap_rates

vector of capitalization rates in percent or character form

net_operating_income

vector of net operating income in numeric or character numeric/currency form

cost_of_sale

vector of cost of sale in percent or character percent form

debt_balance

vector of anticipated debt balance at sale in numeric or character numeric/currency form

return_wide

TRUE return wide or FALSE

Value

a tibble

See also

Examples

calculate_residual_valuation_cap_rates(cap_rates = c(.05, .0525, .06, .2),
net_operating_income = "$27,500,000", cost_of_sale = "5%",debt_balance = "$350,000,000", return_wide = T)