In Excel: use =CORREL(array1, array2) — it returns a correlation coefficient from -1 to 1, where 0 means no linear relationship.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
array1 | required | The first set of values. |
array2 | required | The second set, the same size as array1. |
Related functions
6 pairs
R² = 0.9962
Intercept = 0.1667
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
CORREL measures how strongly two variables move together, on a scale from -1 (perfectly opposed) through 0 (unrelated) to 1 (perfectly aligned). It detects linear relationships only: a strong curved relationship can return a coefficient near zero, which is why plotting the data alongside the number is not optional. The other standing caveat is that correlation says nothing about cause. Both ranges must be the same size; pairs where either value is missing are dropped. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “use correlation function in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. 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. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
Marketing spend in B2:B37 and revenue in C2:C37: =CORREL(B2:B37, C2:C37) returning 0.78 indicates a strong positive linear relationship. Squaring it gives R², the share of variance explained: =CORREL(B2:B37,C2:C37)^2 returns about 0.61, matching the R² a trendline reports. CORREL puts a single defensible number on "do these move together", which is the first question any two-variable analysis has to answer. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Here is the takeaway for “use correlation function in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
Common mistakes
- Reading correlation as causation, which the coefficient cannot support in either direction.
- Trusting a near-zero result without plotting;
CORRELis blind to non-linear relationships. - Ranges of different lengths, which returns
#N/A.
Frequently asked questions
What counts as a strong correlation?
It depends entirely on the field. Above 0.7 is usually called strong in business data and would be weak in a physical measurement.
How do I get R-squared?
Square the coefficient: =CORREL(x,y)^2, or use =RSQ(y,x) directly. Both match the R² a chart trendline displays.
Does correlation prove causation?
No. It measures co-movement only; a lurking third variable explains a great many strong correlations.
Other ways people ask this
On the way here you may have searched this as “correlation excel function” and “excel function correlation” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “correlation excel function”, “excel function correlation” all point at the one operation explained on this page, which is why they all lead here.