Appliance Depreciation Calculator
Find the actual cash value of any appliance from its replacement value, rate and age
Actual Cash Value
💡 Moderate Depreciation
Value remaining —
Depreciated —
Year-by-year value schedule
| Year | Open value | Depreciation | Close value | % Remaining |
|---|
Uses straight-line depreciation — the insurance standard for actual cash value. Real resale values vary with brand, condition and demand.
Embed this calculator
\n';var escaped = toolHtml
.replace(/&/g, '&')
.replace(//g, '>')
.replace(/"/g, '"');embedCodeTextarea.value = '
';
}window.toggleEmbedPanel = function () {
if (embedPanel.style.display === 'none' || embedPanel.style.display === '') {
generateEmbedCode();
embedPanel.style.display = 'block';
} else {
embedPanel.style.display = 'none';
}
};window.copyEmbedCode = function () {
embedCodeTextarea.select();
if (navigator.clipboard) {
navigator.clipboard.writeText(embedCodeTextarea.value).then(function () {
alert('Embed code copied!');
}).catch(function () { alert('Press Ctrl+C'); });
} else {
alert('Press Ctrl+C');
}
};function bindAll() {
[nameInput, rateInput, ageInput, rcvInput, currencySelect].forEach(function (el) {
el.addEventListener('input', calculate);
el.addEventListener('change', calculate);
});
}if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', function () {
bindAll();
calculate();
});
} else {
bindAll();
calculate();
}
})();