In Excel: enable the Analysis ToolPak and use Data ▸ Data Analysis ▸ Regression, or get the same coefficients as a formula with LINEST.
6 pairs
R² = 0.9962
Intercept = 0.1667
What this does
Regression fits a straight-line relationship between one outcome column and one or more predictor columns. The ToolPak produces a full report — coefficients, their standard errors, t statistics and p-values, R squared, and the F test for the model as a whole. LINEST returns the same numbers as a spilled array without the report layout. Both require the predictor columns to be contiguous. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “multiple regression equation excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a text operation that turns messy entries into clean, usable data useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Revenue in B2:B50 is modelled on ad spend in C and site visits in D. Data ▸ Data Analysis ▸ Regression with Input Y Range B1:B50, Input X Range C1:D50 and Labels ticked returns R Square 0.83, an ad-spend coefficient of 2.4 with a p-value of 0.004, and a visits coefficient whose p-value of 0.31 says it adds nothing once spend is in the model. The ToolPak output is the difference between an estimated relationship and a quantified one — the p-values are what stop a coincidence being presented as a driver. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “multiple regression equation excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Selecting non-adjacent predictor columns; both the ToolPak and
LINESTneed one contiguous X block, so copy the columns together first. - Reading
LINEST's coefficients left to right in column order — it returns them in reverse, with the last predictor first. - Reporting a high R squared as proof of causation when the predictors were chosen after seeing the data.
- Leaving strongly correlated predictors in the model, which makes individual coefficients unstable even when the fit looks excellent.
Frequently asked questions
Where is regression in Excel?
Data ▸ Data Analysis ▸ Regression, which appears only after the Analysis ToolPak add-in is enabled.
Is it available on a Mac?
Yes, the Analysis ToolPak ships with Excel for Mac 2016 and later and is enabled from Tools ▸ Excel Add-ins.
What does R squared tell me?
The share of the variation in the outcome the model accounts for. It always rises when predictors are added, so use Adjusted R Square to compare models of different size.
How do I get the equation without the report?
LINEST returns the coefficients and the intercept; SLOPE and INTERCEPT do the same for a single predictor.