wealthschemaresourcesarticlesSmall-business exit modeling — installment sales, §1045 rollovers, and the planning decade no wealth-tech models well
Article

Small-business exit modeling — installment sales, §1045 rollovers, and the planning decade no wealth-tech models well

A founder selling a business at $20M faces decisions that span a decade — installment-sale structuring, QSBS / §1045 rollover, ESOP transitions, sale-to-management. The advice surface depends on data the typical platform never collects.

WealthSchema StaffSmall-business & founder modelingMay 8, 20265 min read

Small-business owner exit planning is one of the highest-leverage planning surfaces in wealth management — and one of the most under-served by wealth-tech. A founder selling their company at $20-200M faces a decade of decisions about transaction structure, tax planning, post-sale wealth management, and the personal transition to whatever comes next. The financial outcomes range across a 50%+ band depending on how the decisions are structured.

Most wealth-tech platforms address this through "we'll connect you with a specialist." That's the right answer for the actual transaction execution, but the planning surface — what the founder should be doing in years -3, -2, -1, 0, +1, +2, +3 around the sale — is where a competent platform adds real value.

This article is the niche working note for engineering teams considering the exit-planning surface. Companion piece: building a small-business-owner financial platform, which covers the pre-exit operating years where the K-1 cascade and reasonable-comp dance set up the cap-table cleanliness this article assumes.

The decade

A typical exit-planning timeline:

  • Year -3 to -1: pre-sale preparation. Cleaning up the cap table, addressing personal-asset commingling, establishing trusts that hold pre-sale stock for estate-planning purposes. The pre-sale planning window is the highest-leverage period; many decisions here are irreversible by transaction date.
  • Year 0: the transaction itself. Stock vs. asset sale, cash vs. installment structure, earn-out terms, transition agreements.
  • Year +1 to +3: post-sale wealth deployment. The founder receives substantial proceeds (often through staged installment payments or earn-outs) and needs to deploy them into a sustainable wealth structure. Tax-aware deployment over multiple years can save substantial tax.
  • Year +3+: ongoing wealth management for the post-founder phase.

The planning decisions interact: §1045 rollover decisions at year 0 affect the year-+1 tax position; pre-sale trust funding at year -2 affects estate-tax exposure at year +2; installment-sale structuring affects multi-year tax burden across years 0-7.

Pre-sale planning surface

The most consequential decisions are made years before the transaction:

  • Trust funding with pre-IPO / pre-sale equity. Funding GRATs, dynasty trusts, or other estate-planning structures with founder stock at low valuations (before the sale process drives valuation upward) is an enormous gift / estate tax leverage opportunity. Stock contributed to a trust at $5/share that becomes worth $50/share at sale produces estate-tax savings on the appreciation.

  • QSBS holding period planning. For founders holding C-corp stock that qualifies under §1202, the 5-year holding period is critical. A founder considering an exit at year 4 should consider deferring the sale 1 more year to capture the federal exclusion (up to $10M or 10x basis).

  • State tax residency planning. A founder selling their business while resident in California pays substantial state tax on the gain. A pre-sale move to Florida, Texas, or other no-state-tax jurisdiction (executed correctly with appropriate severance from the prior state) saves the state-tax component. The "executed correctly" qualifier is consequential — high-tax states aggressively challenge exits that look like sale-driven moves.

  • Charitable structures. Pre-sale contribution of founder stock to a donor-advised fund or charitable remainder trust allows the donor to take a deduction at fair-market-value while avoiding the unrealized gain. Done at the right pre-sale moment, the leverage is substantial.

Each of these requires planning lead time. A platform that surfaces these decisions only at sale signing has missed most of the planning value.

Transaction structure decisions

At the transaction itself, the structure choices include:

  • Stock vs. asset sale. Buyers prefer asset sales (basis step-up, isolation of liabilities); sellers prefer stock sales (single layer of tax, QSBS eligibility for qualifying stock). The tax difference can be a 20%+ swing in net proceeds. The structure is typically a buyer-driven negotiation but the seller's tax advisor should be modeling alternatives.

  • Cash vs. installment. An installment sale spreads the gain recognition across multiple years, potentially keeping the seller in lower tax brackets each year. The seller bears the buyer's credit risk on the remaining balance. Modeling: compare lump-sum-tax NPV vs. installment-tax NPV at the seller's expected reinvestment return and at credit-default-probability-adjusted expected payments.

  • Earn-out structures. Portions of consideration tied to post-close performance. Earn-outs are taxed when received under §453, with imputed interest on the deferred amounts. The tax modeling is non-trivial.

  • Section 1045 rollover. For QSBS sellers who don't yet have a 5-year holding period, §1045 lets the seller defer the gain by reinvesting proceeds into new QSBS-qualifying stock within 60 days. The 60-day window is unforgiving; the rollover requires advance planning to identify the replacement investment.

interface ExitTransactionStructure {
  transaction_type: 'stock_sale' | 'asset_sale' | 'merger' | 'ipo' | 'esop_transition';
  
  consideration_structure: {
    cash_at_close: number;
    installment_terms?: InstallmentTerms;
    earn_out_terms?: EarnOutTerms;
    rollover_equity?: RolloverEquityTerms;
  };
  
  qsbs_treatment: {
    qsbs_eligible_shares: number;
    qsbs_exclusion_used: number;
    section_1045_rollover_planned: boolean;
    section_1045_deadline: ISODate;
  };
  
  state_tax_residency_at_close: USState;
  
  installment_election_made: boolean;
}

Post-sale deployment

After the sale, the founder typically has substantial liquid proceeds and a now-empty calendar. The deployment decisions:

  • Diversification timing. Concentrated proceeds need diversification, but the timing affects tax (additional realization events) and market exposure (lump-sum vs. dollar-cost-averaging into market). The optimization depends on the founder's tax position, market regime, and risk preference.

  • Charitable deployment. Founders frequently establish private foundations or donor-advised funds with a portion of proceeds. The structure choices interact with the pre-sale charitable planning.

  • Real estate. Many founders deploy a portion into real estate (primary residence upgrade, vacation property, investment property). The tax mechanics differ from securities; the modeling is its own surface.

  • Direct investment / venture activity. Many founders become angel investors or venture limited partners post-sale. The tax mechanics for QSBS-held stock acquired through these vehicles can be complex; the platform should support tracking.

What the data model needs

interface FounderExitProfile {
  pre_sale_position: {
    company_id: string;
    shares_held: number;
    cost_basis: number;
    qsbs_status: QSBSStatus;
    holding_period_status: HoldingPeriodStatus;
    estimated_company_value: number;
    expected_sale_timeline_years: number;
  };
  
  pre_sale_planning_state: {
    trust_funding_completed: TrustFundingRecord[];
    state_residency_planning_status: 'not_started' | 'in_progress' | 'completed';
    charitable_planning: CharitablePlanningState;
  };
  
  transaction_state: 'pre_marketed' | 'in_market' | 'under_loi' | 'closed';
  
  post_sale_state: {
    proceeds_received: number;
    proceeds_invested: ProceedsAllocation[];
    section_1045_rollover_completed?: Section1045Record;
    installment_payments_received: InstallmentReceipt[];
  };
  
  longitudinal_projection: {
    year_0_through_year_7: AnnualProjection[];
  };
}

What the test corpus needs

A test corpus for small-business exit planning needs:

  • Pre-marketed founders (year -3 to -1)
  • In-market founders (active sale process)
  • Just-closed founders (year 0)
  • Post-close founders at various stages of deployment
  • QSBS-eligible founders at various holding-period stages
  • Founders with pre-sale trust planning vs. without
  • Founders with state-residency planning vs. without
  • Founders pursuing §1045 rollover scenarios
  • Founders with installment / earn-out structures vs. all-cash
  • Multi-founder companies (multiple founders with different structuring options)

Each scenario has different right answers, different time pressures, and different planning surfaces.

The platform value

Wealth-tech platforms that handle small-business exit planning as a first-class surface differentiate sharply for the founder segment. A single founder client at exit can be worth more in lifetime AUM than dozens of mass-affluent clients combined, and the planning relationship typically begins three to five years before the transaction.

The platform's competence is also a sourcing engine. Founders refer other founders. A founder who feels well-served during their exit becomes a multi-year referral source for their peers.

The investment is real. The data model is rich; the decision logic spans tax, estate, and personal planning; the time horizons are long. But the planning surface is structurally enumerable, and the platforms that take it on become the natural home for the population.

Key takeaways

  • Small-business exit planning is a decade-long process, not a transaction-day event. The highest-leverage decisions are made in years -3 to -1; platforms that surface advice only at sale signing have missed most of the planning value.
  • Pre-sale trust funding with low-valuation founder stock is one of the highest-leverage estate-tax-savings opportunities available. The leverage compounds with the pre-to-post-sale valuation increase.
  • Section 1045 rollover for sub-5-year QSBS holders is unforgiving — 60-day window from sale to reinvestment in qualifying new QSBS. Advance planning is required; platforms should surface the deadline and the replacement-investment-pipeline question early.
  • State-residency planning around an exit is consequential and aggressively litigated. High-tax states challenge exits that look sale-driven; the planning must be done with care and documentation.
  • Founder clients carry outsized lifetime AUM and refer other founders. Platforms that earn founder loyalty through competent exit-planning become the natural home for the population's broader wealth lifecycle.

Small-business exit planning is the prototypical niche where wealth-tech can either invest in real competence or default to "consult our specialists." The investment is real but bounded; the differentiation is durable; the AUM-and-referral economics for the segment justify the engineering. For platforms serving founder populations, this is one of the highest-ROI feature investments available.