The Three Layers of "AI Sheets"
Layer 1: Native Gemini features. Google Workspace includes Gemini at $14/user/month (Business Standard, as of April 2026). Inside Sheets, this means formula suggestions, the "Help Me Organize" sidebar, and natural language pivot table generation. These work on clean, isolated data. Gemini has no concept that your P&L tab links to your Balance Sheet or that Assumptions!$B$3 drives 40 rows of revenue projections. It operates on what's in front of it, not what the model means.
Layer 2: Apps Script automation. The traditional programmable layer—macros, triggers, custom functions. This isn't AI, but it's worth naming because a lot of "AI Sheets" tooling is really just Apps Script with a chat interface bolted on. The ceiling is whatever you hardcode. It won't adapt to a model it hasn't seen before.
Layer 3: AI agents with full spreadsheet context. Some tools use an agent pattern: the AI reads your live sheet data, reasons about it, constructs actions, and writes back with your confirmation. This is the category that can handle a 10-tab LBO or a three-statement model. The tradeoff is complexity—you're trusting the agent to understand your model structure and not silently overwrite the wrong cell.
The Real AI Sheets Bottleneck: Data Assembly
The most painful part of any FP&A workflow isn't analysis—it's pulling inputs together. According to APQC's 2023 benchmarking survey, finance teams spend roughly 40% of close cycle time on data collection and normalization, not modeling.
That's where AI agents show the most traction. Here's what a data assembly task looks like when an agent has access to your live sheet data via SQL:
-- Agent query: pull actuals from P&L, join against budget from Assumptions
SELECT
p.month,
p.revenue_actual,
a.revenue_budget,
(p.revenue_actual - a.revenue_budget) / a.revenue_budget AS variance_pct
FROM sheet_range('P&L!A2:C50') p
JOIN sheet_range('Assumptions!A2:B24') a ON p.month = a.month
WHERE p.month >= '2025-01-01'
ORDER BY p.month
ModelMonkey runs a query like this against your live sheet data, returns the variance table, and writes it to a target range—with a preview step before anything gets committed.
The cross-tab reference that would take a dozen INDEX/MATCH calls (=INDEX('P&L'!C:C, MATCH(Assumptions!$B$3, 'P&L'!A:A, 0))) gets expressed as a join, and the agent handles the range mapping. For models with 8+ linked tabs, that's a meaningful reduction in build time.
Board Pack Automation: Where This Gets Practical
Quarterly board packs are a good stress test. The typical workflow: pull actuals from the P&L, calculate YTD against budget, format a summary, drop it into the board pack template. Manually, that's 2-3 hours of careful work on a Tuesday evening.
With AI agent tooling, the workflow compresses. You describe the task:
"Pull YTD revenue and EBITDA against budget from the P&L tab. Calculate variance in dollars and percentage. Write it to the Board Pack tab, rows 5-12."
The agent reads 'P&L'!A1:F60, computes the variance (say, $1.2M favorable on $18.4M actual vs $17.2M budget, 7.0% above plan), and queues the write for approval. Agent tools with preview-before-write workflows show you exactly which cells will change before committing—critical when your CFO is presenting in 6 hours.
The formula equivalent:
=SUMIFS('P&L'!C:C, 'P&L'!B:B, ">=" & Assumptions!$B$3, 'P&L'!A:A, "Revenue")
The agent writes it into the right cell with the right formatting, without you constructing the SUMIFS.
Comparing AI Sheets Options for FP&A
| Capability | Gemini (Native) | Apps Script | AI Agent |
|---|---|---|---|
| Formula suggestions | ✓ Strong | ✗ | ✓ Strong |
| Multi-tab model awareness | ✗ | Partial | ✓ |
| Natural language → data | Limited | ✗ | ✓ |
| Cross-tab SQL joins | ✗ | ✗ | ✓ |
| Write with preview/rollback | ✗ | ✗ | ✓ |
| Runs on existing model | ✓ | ✓ | ✓ |
| Setup time | Zero | Hours–days | Minutes |
Gemini handles formula assistance well. Apps Script is the right tool for stable, repeatable processes—monthly data imports, email triggers, report formatting. AI agents are the right tool when the task requires understanding your model structure and operating across tabs.
What AI Sheets Can't Do (Yet)
The EuSpRIG research database puts the share of spreadsheets with at least one material error at 88%. AI can help catch some of these—formula validation, cross-tab audit flags—but it doesn't eliminate the problem.
3 things that still require human judgment as of Q1 2026:
Model architecture decisions. An AI agent can write a WACC formula, but it won't tell you whether to use market-value or book-value weights in your specific deal context.
Assumption setting. Whether to use a 14.2x EBITDA exit multiple vs 12.5x in a bank syndicate DCF is yours to own. The AI populates whichever assumption you give it.
Board-level audit trails. Most AI tooling doesn't produce the version-controlled, cell-level audit trail that CFOs and external auditors expect. Treat AI output as a first draft.