원클릭으로
break-even-calc
Calculate break-even revenue by separating fixed and variable costs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Calculate break-even revenue by separating fixed and variable costs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
Manage finances across multiple businesses or legal entities.
| name | break-even-calc |
| description | Calculate break-even revenue by separating fixed and variable costs. |
Determine the revenue level at which total revenue equals total costs (zero profit). Separates expenses into fixed costs (rent, salaries, insurance) and variable costs (materials, commissions, shipping) to calculate the break-even point in both dollars and units.
spending_summary — aggregate expenses by category to classify as fixed or variabletransaction_search — pull revenue data and detailed expense transactions for classificationspending_summary to get all expense categories and totals.transaction_search to pull total revenue for the period.BREAK-EVEN ANALYSIS — [Period]
═══════════════════════════════════════
Monthly Fixed Costs
Rent $2,000
Salaries $8,000
Software $500
Insurance $300
Total Fixed $10,800
Variable Cost Ratio 35%
Contribution Margin 65%
BREAK-EVEN REVENUE $16,615/mo
Break-Even Units 166 units @ $100/unit
Current Revenue $22,000/mo
Margin of Safety 24.5%
═══════════════════════════════════════
=SUMIFS(Amount, CostType, "Fixed") / NumberOfMonths (use absolute values).=SUMIFS(Amount, CostType, "Variable") / NumberOfMonths.=SUMIFS(Amount, Amount, ">0") / NumberOfMonths.=VariableCosts/Revenue.=FixedCosts/(1-VariableCostRatio).=BreakEvenRevenue/PricePerUnit.