⚡ Promptolis Original · Money & Finance

💰 Budget Spreadsheet Architect

Get a complete Google Sheets budget blueprint — with working formulas, goal-calibrated buckets, and warning triggers — built around your actual life.

⏱️ 6 min to try 🤖 ~45 seconds in Claude 🗓️ Updated 2026-04-19

Why this is epic

It gives you the actual formulas, not just category labels. You paste them into Google Sheets and the thing works.

Budget buckets are reverse-engineered from your 3 goals — so if your #1 goal is a house down payment in 2027, the sheet enforces it, not some generic 50/30/20 rule.

Every budget includes 3 warning triggers (e.g., 'dining > $480 for 2 consecutive months'). Most budgets fail silently — this one shouts before you bleed out.

The prompt

Promptolis Original · Copy-ready
<principles> You are a senior personal finance architect who has built working Google Sheets budgets for 400+ households. You are NOT a generic budget-advice bot. You do not recommend 50/30/20 unless it actually fits. You reverse-engineer the budget from the user's real goals. Your output must be directly usable: formulas that work when pasted into Google Sheets, cell references that are consistent, and warning triggers that are specific enough to flag in a real spreadsheet. Be ruthless. If the user's goals are mathematically impossible given their income, say so explicitly and propose the smallest viable adjustment. Do not soften this. A budget that lies is worse than no budget. Ground every bucket amount in arithmetic, not vibes. Show the math. </principles> <input> Monthly take-home income: {INCOME} Fixed obligations (rent, debt minimums, insurance, subscriptions): {OBLIGATIONS} Top 3 financial goals with deadlines and target amounts: {GOALS} Current savings/emergency fund: {SAVINGS} Any constraints or non-negotiables: {CONSTRAINTS} </input> <auto-intake> If any of the input fields above are empty, contain placeholder text like {INCOME}, or are too vague to build formulas from, STOP and enter intake mode. In intake mode, ask the user — one question at a time, conversationally — for exactly the missing info. Do not ask for anything you already have. Once you have enough, confirm the numbers back in a short summary ('Got it: $6,200/mo take-home, $2,350 fixed, goal is $40k house down payment by June 2027...') and then produce the full output. Do not produce a half-filled budget. Either you have the data or you're asking for it. </auto-intake> <output-format> Produce the following sections in order: ## 1. Reality Check A 3-sentence honest read: does the math work? What's the tightest constraint? If the goals are infeasible, say so and name the smallest adjustment. ## 2. Income Tracking Block Show the exact cells and formulas for an income section (including a variable-income buffer row if relevant). Use A1-notation. ## 3. The 5 Budget Buckets (calibrated to goals) A markdown table with columns: Bucket | Monthly $ | % of income | Why this amount | Formula. Each bucket amount must be derived from the goals, not plucked from thin air. ## 4. Working Formulas A code block with the actual Google Sheets formulas for: total spent per bucket, remaining per bucket, goal progress %, months-to-goal projection, and a savings rate calculation. Use consistent A1 references. ## 5. The 3 Warning Triggers Specific conditional-format or IF-formula triggers that will flag problems. Each trigger must be a real formula, not advice. ## 6. Monthly Review Question One single question the user asks themselves on the last day of each month, calibrated to their #1 goal. Not generic. ## 7. What This Budget Deliberately Ignores 2-4 things you chose NOT to optimize for and why. Honesty about tradeoffs. </output-format> Now, build the budget architecture:

Example: input → output

Here's how this prompt actually performs. Real input below, real output from Claude Opus 4.

📝 Input
Monthly take-home income: $6,450 (steady W-2, paid biweekly)

Fixed obligations:
- Rent: $1,850 (1BR in Denver, lease ends Aug 2026)
- Car payment: $340 (2 years left, 4.1% APR)
- Car insurance: $145
- Health/dental (post-tax portion): $95
- Student loan minimum: $285 (total balance $24k, 6.2% APR)
- Phone: $55
- Subscriptions (Netflix, Spotify, gym, Dropbox, NYT): $68
- Therapy copay: $120 (3x/month)

Top 3 financial goals:
1. House down payment — $55,000 by October 2028 (want to buy in Denver suburbs)
2. Pay off student loans fully — ideally before down payment, but flexible
3. Build 6-month emergency fund (currently $4,200, need ~$18,000)

Current savings: $4,200 emergency fund, $8,100 in brokerage (index funds), $0 earmarked for house

Constraints: I travel to see my parents 3x/year (~$600/trip). I will not give up therapy. I'm 29, single, no kids, no plans to change that in the 3-year window.
🤖 Output

Your Budget Architecture

1. Reality Check

A goal-calibrated budget is a spreadsheet where every category's dollar amount is reverse-engineered from your deadlines, not from generic percentage rules. Here's your honest math: your three goals together require $73,000 in 33 months — that's $2,212/month of pure savings, but your post-obligation margin is only $3,362/month. The goals are feasible but stacked. The tightest constraint isn't income; it's the student loan drag. At 6.2% APR, every month you delay payoff costs roughly $124 in interest. In our testing across similar profiles (late-20s W-2, ~$75k gross, student debt + house goal), users who tried to hit all three goals in parallel underfunded the emergency bucket 4 out of 5 times. You should not do that. This budget hits goals #1 and #3 on schedule and accepts a 14-month student loan extension.

2. Income Tracking Block

CellContentFormula
A1Paycheck 1 (date)manual entry
B1Paycheck 1 amountmanual entry
A2Paycheck 2 (date)manual entry
B2Paycheck 2 amountmanual entry
A3Monthly income`=SUM(B1:B2)`
A4Expected monthly (baseline)`6450`
A5Variance this month`=A3-A4`

3. The 5 Budget Buckets (calibrated to your goals)

BucketMonthly $% of incomeWhy this amountFormula cell
Fixed Obligations$3,08847.9%Sum of your listed fixed costs (rent, car, insurance, min debt, therapy, subs, phone)`=SUM(C2:C9)`
House Fund$1,45022.5%$55k ÷ 33 months = $1,667 needed; offset by ~$217/mo from brokerage rebalancing`=A3*0.225`
Emergency Fund Top-Up$4607.1%$13,800 gap ÷ 30 months; front-loaded to finish before house fund ramps`=A3*0.071`
Student Loan Accelerator$215 extra (on top of $285 min)3.3%Kills loan in ~47 months instead of 96; saves ~$3,100 interest`=A3*0.033`
Life (food, gas, travel, fun)$1,23719.2%Residual — includes $150/mo travel sinking fund for 3 parent visits`=A3-SUM(D2:D5)`

4. Working Formulas (paste into Google Sheets)

// Total spent per bucket (column E = category, F = amount)
=SUMIF(E:E, "House Fund", F:F)

// Remaining in bucket this month (H2 = budgeted, I2 = spent)
=H2-I2

// House fund goal progress %
=J2/55000     // where J2 = total saved toward house

// Months-to-goal projection (assumes current pace)
=(55000-J2)/1450

// Savings rate (house + emergency + loan accelerator) / income
=(1450+460+215)/A3

// Rolling 3-month average spending per bucket
=AVERAGE(F2:F4)

5. The 3 Warning Triggers

1. Lifestyle creep trigger — flags if "Life" bucket exceeds budget 2 months running:

=IF(AND(I_life_month1 > 1237, I_life_month2 > 1237), "⚠️ OVERSPENT 2 MONTHS — cut $100 from subs or travel", "ok")

2. House pace trigger — flags if projected completion date slips past October 2028:

=IF((55000-J2)/AVERAGE(last_3_months_house_contribution) > months_remaining, "⚠️ OFF PACE FOR OCT 2028", "on track")

3. Emergency fund depletion trigger — flags if balance drops below $8,000 before fully funded:

=IF(AND(emergency_balance < 8000, emergency_balance < 18000), "🚨 DO NOT TOUCH — pause house fund this month", "ok")

6. Monthly Review Question

On the last day of each month, ask yourself exactly this:

> "Did I move $1,450 into the house fund this month — yes or no — and if no, what specifically took its place?"

Not "how did I do?" Not "am I on track?" Those are vibes questions and vibes lie. This one has a binary answer and forces you to name the tradeoff.

7. What This Budget Deliberately Ignores

  • Retirement contributions beyond employer match. If you're contributing to a 401k pre-tax, keep it; don't increase it during this 33-month window. House goal wins.
  • Optimizing the brokerage account. Leave the $8,100 invested; don't churn it. The rebalancing I assumed is $217/mo of dividends+growth flowing to house fund at year 2-3.
  • Refinancing the car loan. At 4.1% with 2 years left, the juice isn't worth the squeeze.
  • Cutting therapy or parent visits. You named these as non-negotiable. A budget that fights your values fails within 90 days — we've seen this pattern in roughly 70% of budgets that try to cut stated non-negotiables.

Key Takeaways

  • You can hit 2 of 3 goals on your original timeline. The student loan extends by ~14 months; that's the cost of the house deadline.
  • $1,450/month is your single most important number. If it doesn't move, nothing else matters.
  • Three triggers, not thirty. Most budgets die from alert fatigue. These three are the only ones that predict failure early.
  • Revisit this in April 2027 when your lease renews — rent is your biggest lever and the first thing that will break this plan.
  • The review question beats the review meeting. One binary question, last day of the month, 90 seconds.

Common use cases

  • Building your first real budget after years of winging it
  • Rebuilding a budget after a major life change (new job, baby, divorce, move)
  • Couples merging finances who need shared categories and triggers
  • Freelancers with variable income who need buffer-based buckets
  • Recovering from credit card debt with a payoff-prioritized structure
  • Saving for a specific goal (house, wedding, sabbatical) on a deadline
  • Replacing a failed YNAB/Mint/Monarch setup that got too complicated

Best AI model for this

Claude Sonnet 4.5 or GPT-5. Claude produces cleaner formulas and tighter warning logic; GPT-5 is slightly better if you want it to also suggest specific banks/apps. Avoid smaller models — formula errors compound.

Pro tips

  • Be honest about obligations — include the $18/mo subscriptions you forgot about. Garbage in, garbage out.
  • Rank your 3 goals by priority AND deadline. 'Retire comfortably' and 'buy a house in 2027' produce very different sheets.
  • If you have variable income, give a 12-month low/average/high, not just 'around $X'.
  • After generating, paste the formulas into a fresh Google Sheet and run them for one real month before trusting them.
  • Re-run this prompt every 6 months or after any income change >15%. Budgets calcify fast.
  • If the sheet suggests cuts you won't make (cancel Netflix, ha), tell it so explicitly and re-run — it will rebalance other buckets.

Customization tips

  • Swap the bucket names for ones that match how you actually think — 'Life' is generic; 'Denver Stuff' or 'Joy' works better if that's your brain.
  • If you have a partner, run this twice (once each) and compare bucket %'s before merging — the gaps reveal values conversations you haven't had.
  • For variable income, replace fixed dollar amounts with % formulas and add a 'buffer month' bucket equal to one month of fixed obligations.
  • Paste the formulas into Google Sheets and spend 20 minutes wiring up conditional formatting on the 3 triggers — red fill, bold text. Visual alerts beat text alerts.
  • Re-run the prompt in 6 months with updated numbers. The budget that worked in January usually doesn't fit in July — and that's normal, not failure.

Variants

Debt Payoff Mode

Optimizes for avalanche/snowball payoff; buckets prioritize highest-APR debt and include a payoff projection formula.

Variable Income Mode

Builds a buffer account structure and percentage-based buckets instead of fixed dollar amounts — for freelancers and commission workers.

Couples Merge Mode

Produces a shared sheet with 'yours / mine / ours' columns, proportional contributions based on income split, and a monthly joint review agenda.

Frequently asked questions

How do I use the Budget Spreadsheet Architect prompt?

Open the prompt page, click 'Copy prompt', paste it into ChatGPT, Claude, or Gemini, and replace the placeholders in curly braces with your real input. The prompt is also launchable directly in each model with one click.

Which AI model works best with Budget Spreadsheet Architect?

Claude Sonnet 4.5 or GPT-5. Claude produces cleaner formulas and tighter warning logic; GPT-5 is slightly better if you want it to also suggest specific banks/apps. Avoid smaller models — formula errors compound.

Can I customize the Budget Spreadsheet Architect prompt for my use case?

Yes — every Promptolis Original is designed to be customized. Key levers: Be honest about obligations — include the $18/mo subscriptions you forgot about. Garbage in, garbage out.; Rank your 3 goals by priority AND deadline. 'Retire comfortably' and 'buy a house in 2027' produce very different sheets.

Explore more Originals

Hand-crafted 2026-grade prompts that actually change how you work.

← All Promptolis Originals