

Every operator I work with has the same story.
At month-end, someone in sales or finance is still up at 11:47 p.m., dragging ranges in Google Sheets, tweaking FORECAST formulas, and praying the chart matches reality. Another manager is wrestling Excel’s Forecast Sheet dialog, guessing at seasonality and confidence intervals. Both know they should be running campaigns or talking to customers, not babysitting cells.
Forecast sheets exist to solve that grind. In Google Sheets, the FORECAST function (https://support.google.com/docs/answer/3094000) lets you extend a trend line with simple ranges. Excel goes further: its Forecast Sheet feature (https://support.microsoft.com/en-us/office/create-a-forecast-in-excel-for-windows-22c500da-6da7-45e5-bfdc-60a7062329fd) uses the Exponential Smoothing (ETS) algorithm, automatically detects seasonality, and even gives you confidence intervals. Add-ons like ForecastSheets layer Holt‑Winters forecasting right inside Sheets, turning messy, seasonal sales into usable forecasts in minutes.
But the magic happens when you stop being the person who opens the file.
An AI computer agent can open Google Sheets or Excel for you, pull in fresh CRM or ad data, run the built-in forecasting tools, compare forecasts to last month’s accuracy, and publish clean charts to your team — on a schedule, without reminders, and without you clicking a single cell.
If you run a sales team, agency, or e‑commerce brand, you already live inside Google Sheets and Excel. Forecast sheets are how you decide hiring plans, ad budgets, and inventory. Let’s walk through practical ways to build them — from classic manual approaches to fully automated AI-agent workflows — so you can choose the right level of automation for your team.
Use this when your data roughly follows a straight-line trend.
Step-by-step:
=FORECAST(A13, B2:B12, A2:A12) A13 is the future x-value you’re forecasting for. B2:B12 is your historical y-values (e.g., revenue). A2:A12 is your historical x-values (e.g., months).Official reference: Google’s FORECAST help center article — https://support.google.com/docs/answer/3094000
Pros: Simple, quick, native to Sheets.
Cons: Linear regression only; weak for strong seasonality (e.g., retail spikes, holiday traffic).
When your data is clearly seasonal (weekly, monthly, yearly cycles), this is a big upgrade.
Step-by-step:
A2:B2922). 365 for daily data with yearly seasonality).
Pros: Handles seasonality via Holt–Winters; stays inside Sheets; no coding.
Cons: Another tool to configure; parameters may need experimentation.
Excel’s Forecast Sheet is powerful for time-based data with trends and seasonality.
Step-by-step:
Official guide: https://support.microsoft.com/en-us/office/create-a-forecast-in-excel-for-windows-22c500da-6da7-45e5-bfdc-60a7062329fd
Pros: Handles seasonality; produces robust tables and charts; no formulas required.
Cons: Still a manual operation; easy to forget to rerun; tied to desktop Excel.
For more granular control in formulas:
FORECAST.ETS with your timeline (dates), values, and desired target date. FORECAST.ETS.STAT.Official reference: https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e
Pros: Formula-based and flexible; good for power users.
Cons: More complex; easy to misconfigure.
Manual forecasting works until you need to redo it every week. No-code automations help you keep Sheets and Excel updated without living in them.
Imagine an agency owner pulling daily ad spend from multiple platforms.
Workflow idea:
FORECAST or ForecastSheets on this ever-growing dataset.
Pros: No more CSV uploads; near real-time forecasts.
Cons: You still own the logic (ranges, formulas, charts) and must fix errors.
If your organization relies on Excel:
Pros: Strong for teams already standardized on Excel.
Cons: Still requires human clicks unless paired with macros or an agent.
Once forecasts are generated (in either app), set up:
This alone turns your forecast sheets from a “pull” resource (“Open the file and check”) into a “push” system (“Forecasts land in your inbox every Monday”).
This is where Simular-style AI computer agents change the game. Instead of gluing tools together, you delegate the entire process: opening apps, updating data, running forecasts, validating outputs, and publishing results.
Story: A DTC founder wants a 90‑day rolling revenue forecast updated daily.
What the agent does:
FORECAST formulas.
Pros: Zero spreadsheet babysitting; multi-step, cross-app workflow handled end-to-end.
Cons: Requires initial setup and testing of the agent’s steps.
Story: A B2B SaaS VP of Sales needs a board-ready bookings forecast every month.
What the agent does:
Pros: Production-grade reliability across many Excel steps; no more “who ran the forecast this month?” Slack messages.
Cons: Needs Windows or macOS environment configured for the agent.
For agencies and multi-brand operators, an AI computer agent can:
Pros: True "set it and scale it" forecasting across dozens of brands or territories.
Cons: Initial design takes time — but once built, the marginal cost of another forecast is effectively zero.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Block quote
Ordered list
Unordered list
Bold text
Emphasis
Superscript
Subscript
If you just want a quick, defensible forecast and your data isn’t wildly seasonal, start with the tools already in Google Sheets and Excel.
In Google Sheets, create two columns: one for your x‑values (time or index) and one for y‑values (revenue, leads, etc.). Suppose A2:A13 are months, B2:B13 are sales, and you want to forecast month 14. In B14 enter:
=FORECAST(A14, B2:B13, A2:A13)
Copy that down for additional periods and chart the combined historical + forecast ranges. Full syntax details are in Google’s guide: https://support.google.com/docs/answer/3094000
In Excel, it’s even simpler. Put dates in column A and values in column B, select any cell in the range, then go to Data → Forecast → Forecast Sheet. Choose a line chart, set your forecast end date, and click Create. Excel builds a new sheet with historical values, forecasts, and confidence intervals. Microsoft’s step‑by‑step is here: https://support.microsoft.com/en-us/office/create-a-forecast-in-excel-for-windows-22c500da-6da7-45e5-bfdc-60a7062329fd
Once you’ve done this once, you can hand those exact steps to an AI agent to repeat on a schedule.
Seasonality (weekly spikes, holiday peaks, quarter‑end surges) breaks simple linear forecasts. You need tools that explicitly model repeating patterns.
In Google Sheets, the plain FORECAST function is linear, so it often underestimates peaks and overestimates troughs. Two better options:
In Excel, use the built‑in Forecast Sheet feature, which relies on the ETS algorithm and auto‑detects seasonality. After selecting your data and opening Forecast Sheet, click Options and either let Excel detect seasonality or set it manually (e.g., 12 for monthly data with yearly seasonality). The more complete cycles you have, the better.
For recurring business workflows, an AI agent can manage these parameters consistently across files so no one mis‑configures them under deadline pressure.
Think in two layers: automating data refresh and automating the forecast run itself.
For Google Sheets:
FORECAST or the ForecastSheets add‑on, referencing the growing raw data range.For Excel:
To go further, hand the entire routine to an AI computer agent: it logs into dashboards, exports or syncs data, opens Sheets or Excel, runs the forecast, validates outputs, and distributes charts to your team on your schedule.
Accuracy isn’t about guessing the future perfectly; it’s about being consistently less wrong. You validate by comparing forecasts to actuals and measuring error.
In practice:
FORECAST.ETS.STAT to compute metrics like MAE or RMSE (see https://support.microsoft.com/en-us/office/forecasting-functions-reference-897a2fe9-6595-4680-a0b0-93e0308d5f6e).=ABS((Actual-Forecast)/Actual) and average it.Once you have a repeatable validation checklist, encode it into an AI agent’s workflow so every forecast run automatically logs accuracy and flags models that drift.
Most sales leaders, founders, and account managers don’t want to learn forecasting functions; they want clear answers: “Are we ahead or behind target?” This is where AI computer agents shine.
You design the forecast logic once — which Sheet or Excel file to use, what ranges matter, how to interpret outputs — and the agent handles the mechanics.
A typical workflow:
Because platforms like Simular Pro give you transparent, step‑by‑step execution, ops or data teams can review and adjust the workflow, while non‑analysts simply consume the results and make decisions.