Nj Executor Fee Calculator

#nj-executor-calc-outer { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; color: #333; line-height: 1.6; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .calc-section { background: #f9f9f9; padding: 20px; border-radius: 8px; margin-bottom: 30px; } .nj-input-group { margin-bottom: 20px; } .nj-input-group label { display: block; font-weight: 700; margin-bottom: 8px; color: #2c3e50; } .nj-input-group input, .nj-input-group select { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .nj-input-group input:focus { border-color: #2980b9; outline: none; } .calc-btn { background-color: #2980b9; color: white; border: none; padding: 15px 25px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: background 0.3s; } .calc-btn:hover { background-color: #1c5980; } #nj-result-display { margin-top: 25px; padding: 20px; background-color: #e8f4fd; border-left: 5px solid #2980b9; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #d1e5f5; padding-bottom: 5px; } .result-total { font-size: 1.4em; font-weight: bold; color: #1c5980; margin-top: 15px; } .nj-article h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .nj-article h3 { color: #2980b9; margin-top: 20px; } .nj-article ul { margin-bottom: 20px; } .nj-article li { margin-bottom: 10px; }

NJ Executor Fee Calculator

Estimate statutory commissions for New Jersey Estate Executors (N.J.S.A. 3B:18-14)

Includes real estate, bank accounts, and physical assets at time of death.
Dividends, interest, or rent earned during the administration period.
1 Executor 2 Executors 3 or more Executors
Corpus Commission: $0.00
Income Commission (6%): $0.00
Additional Executor Allowance: $0.00
Total Estimated Commission: $0.00

Understanding New Jersey Executor Fees

In New Jersey, executors and administrators are entitled by law to compensation for their work in settling an estate. These fees, officially known as "commissions," are governed by New Jersey Statutes Annotated N.J.S.A. 3B:18-14 (for corpus) and 3B:18-13 (for income).

How the NJ Corpus Commission is Calculated

The corpus commission is based on the gross value of the assets handled by the executor. The fee is structured in tiers:

  • 5% on the first $200,000 of the estate's principal.
  • 3.5% on the excess above $200,000 up to $1,000,000.
  • 2% on any excess above $1,000,000.

Income Commission

In addition to the corpus commission, an executor is entitled to an income commission. This is calculated as 6% of all income earned by the estate during the period of administration (such as interest from bank accounts or rental income from estate properties).

Multiple Executors

If there is more than one executor, New Jersey law allows for additional compensation. Generally, for each additional executor, the court may allow an additional 1% of the corpus commission. However, the total commission is usually capped and distributed among the co-executors as they agree or as the court directs.

Example Calculation

Imagine a New Jersey estate with a principal value (corpus) of $600,000 and earned income of $10,000.

  1. First $200,000: $200,000 × 5% = $10,000
  2. Remaining $400,000: $400,000 × 3.5% = $14,000
  3. Income Fee: $10,000 × 6% = $600
  4. Total Commission: $10,000 + $14,000 + $600 = $24,600

Important Considerations

  • Non-Probate Assets: Assets that pass directly to beneficiaries (like life insurance with a named beneficiary or "Transfer on Death" accounts) are generally not included in the commission calculation.
  • Specific Bequests: In some cases, specific items of property left to specific people might be excluded from the fee base.
  • Taxability: Executor commissions are considered taxable income to the executor and are deductible for the estate on the fiduciary income tax return or the estate tax return.
function calculateNJFees() { var corpus = parseFloat(document.getElementById("estateCorpus").value); var income = parseFloat(document.getElementById("estateIncome").value); var numExecs = parseInt(document.getElementById("numExecutors").value); if (isNaN(corpus)) corpus = 0; if (isNaN(income)) income = 0; var corpusFee = 0; // Tier 1: 5% on first 200,000 if (corpus <= 200000) { corpusFee = corpus * 0.05; } else { corpusFee += 200000 * 0.05; // Tier 2: 3.5% on excess up to 1,000,000 if (corpus 1) { var extraCount = numExecs – 1; if (extraCount > 2) extraCount = 2; // Capping adjustment for standard calculator logic multiExecAllowance = corpus * (extraCount * 0.01); document.getElementById("multiExecRow").style.display = "flex"; } else { document.getElementById("multiExecRow").style.display = "none"; } var totalFee = corpusFee + incomeFee + multiExecAllowance; // Formatting var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', }); document.getElementById("resCorpus").innerText = formatter.format(corpusFee); document.getElementById("resIncome").innerText = formatter.format(incomeFee); document.getElementById("resMulti").innerText = formatter.format(multiExecAllowance); document.getElementById("resTotal").innerText = formatter.format(totalFee); document.getElementById("nj-result-display").style.display = "block"; }

Leave a Reply

Your email address will not be published. Required fields are marked *