بنقرة واحدة
profit-loss
Generate a profit and loss statement for any date range.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate a profit and loss statement for any date range.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Calculate break-even revenue by separating fixed and variable costs.
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.
| name | profit-loss |
| description | Generate a profit and loss statement for any date range. |
Build a standard income statement (P&L) showing revenue, cost of goods sold, gross profit, operating expenses, and net income. Calculates gross margin and net margin percentages.
transaction_search — pull all income transactions (positive amounts) and expense transactions (negative amounts) for the target periodspending_summary — aggregate expenses by category to populate operating expense line itemstransaction_search with amount > 0 to find all revenue transactions in the period.transaction_search with amount < 0 to find all expense transactions.spending_summary for the same period to get category-level expense totals.PROFIT & LOSS STATEMENT — [Period]
═══════════════════════════════════════
Revenue
Sales Revenue $XX,XXX
Service Revenue $XX,XXX
───────────────────────────────────────
Total Revenue $XX,XXX
Cost of Goods Sold
Materials ($X,XXX)
Direct Labor ($X,XXX)
───────────────────────────────────────
Total COGS ($X,XXX)
GROSS PROFIT $XX,XXX
Gross Margin XX.X%
Operating Expenses
Rent ($X,XXX)
Utilities ($XXX)
Software & Subscriptions ($XXX)
Payroll ($X,XXX)
Insurance ($XXX)
Other ($XXX)
───────────────────────────────────────
Total Operating Expenses ($X,XXX)
NET INCOME $X,XXX
Net Margin XX.X%
═══════════════════════════════════════
=SUMIFS(Amount, Type, "Revenue") for total revenue.=SUMIFS(Amount, Type, "COGS") for total COGS (use absolute values).=GrossProfit/Revenue*100.=SUMIFS(Amount, Type, "Operating Expense") for total OpEx.=NetIncome/Revenue*100.=TEXT(Date,"YYYY-MM") column and use pivot tables to break out by month.