Small Business Valuation Calculator
About this app
A simple tool to calculate the minimum and maximum value of a small business
Small Business Valuation Calculator 🏦 Small Business Valuation Calculator 💰 Tangible Assets Value Available Stock Value Net Profit Depreciation Owner's Salary Other Monetary Benefits of the Owner Calculate Minimum Value: $ Maximum Value: $
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Small Business Valuation Calculator</title>
<meta name="description" content="A simple tool to calculate the minimum and maximum value of a small business">
<meta name="keywords" content="business, valuation, calculator, small business, value">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
$('#calculate').click(function() {
var tangibleAssets = parseFloat($('#tangible-assets').val());
var stockValue = parseFloat($('#stock-value').val());
var netProfit = parseFloat($('#net-profit').val());
var depreciation = parseFloat($('#depreciation').val());
var ownerSalary = parseFloat($('#owner-salary').val());
var otherBenefits = parseFloat($('#other-benefits').val());
var minVal = tangibleAssets + stockValue;
var netAdjustedProfit = netProfit + depreciation + ownerSalary + otherBenefits;
var maxVal = netAdjustedProfit * 1.5;
$('#min-value').text(minVal);
$('#max-value').text(maxVal);
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
background: linear-gradient(to right, #fbc2eb, #a6c1ee);
}
.container {
margin-top: 50px;
}
.btn-primary {
background-color: #f7797d;
border-color: #f7797d;
}
.result {
font-size: 24px;
font-weight: bold;
color: #6a057c;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>🏦 Small Business Valuation Calculator 💰</h1>
<div class="form-group">
<label for="tangible-assets">Tangible Assets Value</label>
<input type="number" class="form-control" id="tangible-assets" placeholder="Enter value">
</div>
<div class="form-group">
<label for="stock-value">Available Stock Value</label>
<input type="number" class="form-control" id="stock-value" placeholder="Enter value">
</div>
<div class="form-group">
<label for="net-profit">Net Profit</label>
<input type="number" class="form-control" id="net-profit" placeholder="Enter value">
</div>
<div class="form-group">
<label for="depreciation">Depreciation</label>
<input type="number" class="form-control" id="depreciation" placeholder="Enter value">
</div>
<div class="form-group">
<label for="owner-salary">Owner's Salary</label>
<input type="number" class="form-control" id="owner-salary" placeholder="Enter value">
</div>
<div class="form-group">
<label for="other-benefits">Other Monetary Benefits of the Owner</label>
<input type="number" class="form-control" id="other-benefits" placeholder="Enter value">
</div>
<button id="calculate" class="btn btn-primary mt-3">Calculate</button>
<p class="result mt-3">Minimum Value: $<span id="min-value"></span></p>
<p class="result">Maximum Value: $<span id="max-value"></span></p>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!