Personal Versus Enterprise Goodwill: What You’re Really Selling

5 min read

Picture two heating-and-cooling companies at opposite ends of the same town. Same revenue, same trucks, same crew. The first one runs on its owner, a guy who spent 20 years building a name, and people call the office because they want him on the roof. The second runs on a brand, a dispatch system, and a phone number folks have had memorized since the ’90s. On paper, the two look like twins. But put them up for sale, and they fetch very different prices – and the reason is goodwill, the chunk of value that has nothing to do with the trucks and everything to do with why the phone keeps ringing.

The Value That Stays

That second company has what valuators call enterprise goodwill. It lives in the business itself: the location people drive past, the name they already trust, the systems that keep running through the two weeks when the founder goes to Cabo. Whoever buys the place inherits all of it, and that is what a buyer pays up for. They are not wagering on one person’s stamina. They are buying an operation that keeps producing after the seller is a memory.

The Value That Walks Out the Door

The first company has personal goodwill, where owners talk themselves into a number the market will not pay. When the clients are loyal to the owner, the referrals come because of the owner, and the day he retires, half the revenue walks out behind him; you cannot deed that over the way you hand across the keys to a van. A business built on one person almost always sells for less, because the buyer is left guessing how much of it actually survives the handoff.

It can be salvaged. A tight employment agreement and a non-compete can keep the seller out of the market long enough for relationships to take root with the new owner. In a lot of these deals, choreographing that single transfer is the whole negotiation.

It Comes Up in Divorce, Too

The same split shows up in divorce, usually not the way people expect. State law varies, but courts tend to treat enterprise goodwill as a divisible marital asset while setting personal goodwill aside, on the logic that it is really the spouse’s future earning power rather than property to carve up. Arizona is one of the states that has swept professional goodwill into the marital estate anyway, in the right case. Wherever it gets heard, someone has to draw that boundary, and a lot of money rides on where the line lands.

Putting a Dollar On It

So how do you put a dollar figure on something this slippery? One of the cleaner tools is the With and Without Method. You build two futures for the company and discount each one back to today. In the first, the key owner stays. In the second, he walks and starts competing down the street. The cash flow that bleeds out of that second version is the value the first one was quietly protecting.

Go back to our first owner and say his presence is worth a formal non-compete. With him locked in, free cash flow runs $10 million a year. With him loose and competing, it slips to $7.5 million. Discount each stream at 7.5 percent over eight years, and the protected version is worth about $58.6 million in today’s dollars against roughly $43.9 million without. That gap, near $14.6 million, is the price tag on the non-compete.

A real engagement would not leave it that clean. I would model how fast the business rebuilds the revenue it lost and weigh the result for how likely the owner is to actually go compete. But the bones of it are exactly that.

What to Take Away

Here is the part worth holding onto. Get this distinction wrong, and you can leave seven figures on the table at a closing or in front of a judge. The line between personal and enterprise goodwill does not draw itself. If you are eyeing an exit, weighing an offer, or fighting over a number in a dispute, get someone to mark it before the other side marks it for you.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

Personal Versus Enterprise Goodwill: What You’re Really Selling

July 1, 2026  ·  Accounting News, Blog, Uncategorized

5 min read

Picture two heating-and-cooling companies at opposite ends of the same town. Same revenue, same trucks, same crew. The first one runs on its owner, a guy who spent 20 years building a name, and people call the office because they want him on the roof. The second runs on a brand, a dispatch system, and a phone number folks have had memorized since the ’90s. On paper, the two look like twins. But put them up for sale, and they fetch very different prices – and the reason is goodwill, the chunk of value that has nothing to do with the trucks and everything to do with why the phone keeps ringing.

The Value That Stays

That second company has what valuators call enterprise goodwill. It lives in the business itself: the location people drive past, the name they already trust, the systems that keep running through the two weeks when the founder goes to Cabo. Whoever buys the place inherits all of it, and that is what a buyer pays up for. They are not wagering on one person’s stamina. They are buying an operation that keeps producing after the seller is a memory.

The Value That Walks Out the Door

The first company has personal goodwill, where owners talk themselves into a number the market will not pay. When the clients are loyal to the owner, the referrals come because of the owner, and the day he retires, half the revenue walks out behind him; you cannot deed that over the way you hand across the keys to a van. A business built on one person almost always sells for less, because the buyer is left guessing how much of it actually survives the handoff.

It can be salvaged. A tight employment agreement and a non-compete can keep the seller out of the market long enough for relationships to take root with the new owner. In a lot of these deals, choreographing that single transfer is the whole negotiation.

It Comes Up in Divorce, Too

The same split shows up in divorce, usually not the way people expect. State law varies, but courts tend to treat enterprise goodwill as a divisible marital asset while setting personal goodwill aside, on the logic that it is really the spouse’s future earning power rather than property to carve up. Arizona is one of the states that has swept professional goodwill into the marital estate anyway, in the right case. Wherever it gets heard, someone has to draw that boundary, and a lot of money rides on where the line lands.

Putting a Dollar On It

So how do you put a dollar figure on something this slippery? One of the cleaner tools is the With and Without Method. You build two futures for the company and discount each one back to today. In the first, the key owner stays. In the second, he walks and starts competing down the street. The cash flow that bleeds out of that second version is the value the first one was quietly protecting.

Go back to our first owner and say his presence is worth a formal non-compete. With him locked in, free cash flow runs $10 million a year. With him loose and competing, it slips to $7.5 million. Discount each stream at 7.5 percent over eight years, and the protected version is worth about $58.6 million in today’s dollars against roughly $43.9 million without. That gap, near $14.6 million, is the price tag on the non-compete.

A real engagement would not leave it that clean. I would model how fast the business rebuilds the revenue it lost and weigh the result for how likely the owner is to actually go compete. But the bones of it are exactly that.

What to Take Away

Here is the part worth holding onto. Get this distinction wrong, and you can leave seven figures on the table at a closing or in front of a judge. The line between personal and enterprise goodwill does not draw itself. If you are eyeing an exit, weighing an offer, or fighting over a number in a dispute, get someone to mark it before the other side marks it for you.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

Service2Client

Share
Published by
Service2Client