Lets see how much it costs to sell a home.

Seller Net Proceeds Calculator (Washington)

Sales Information

Sale Price ($)


Closing Date


Real Estate Fees

Listing Fee (%)


Buyer Broker Fee (%)


Taxes & Settlement

County


Annual Property Tax (%)


Escrow + Title + Recording ($)





Total Closing Costs: $0
Estimated Net Proceeds: $0

Estimates only. Washington REET uses graduated state rates plus local excise tax.

function money(n){ return n.toLocaleString(“en-US”,{style:”currency”,currency:”USD”}); } function waStateREET(price){ var tax = 0; if(price <= 525000){ tax = price * 0.011; } else if(price <= 1525000){ tax = 525000 * 0.011 + (price – 525000) * 0.0128; } else if(price <= 3025000){ tax = 525000 * 0.011 + 1000000 * 0.0128 + (price – 1525000) * 0.0275; } else { tax = 525000 * 0.011 + 1000000 * 0.0128 + 1500000 * 0.0275 + (price – 3025000) * 0.03; } return tax; } function calculateNet(){ var price = Number(document.getElementById("salePrice").value); var listPct = Number(document.getElementById("listPct").value)/100; var buyPct = Number(document.getElementById("buyPct").value)/100; var localREET = Number(document.getElementById("county").value); var taxPct = Number(document.getElementById("taxPct").value)/100; var settlement = Number(document.getElementById("settlement").value); var listingFee = price * listPct; var buyerFee = price * buyPct; var stateREET = waStateREET(price); var localREETTax = price * localREET; var annualTax = price * taxPct; var closingCosts = listingFee + buyerFee + stateREET + localREETTax + settlement + annualTax; var net = price – closingCosts; document.getElementById("closingCosts").innerText = money(closingCosts); document.getElementById("netProceeds").innerText = money(net); }