Weighted AVERAGE Formula in Excel

There are two ways to “weighted average formula in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: calculate a weighted average with =SUMPRODUCT(A2:A10,B2:B10)/SUM(B2:B10), where column A holds the values and column B their weights — plain AVERAGE ignores the weights entirely.

ƒxWeighted Average CalculatorLive
Weighted average
83.0000

3 value/weight pairs · Unweighted mean: 80.0000

=SUMPRODUCT(values,weights)/SUM(weights)
=SUMPRODUCT(values,weights)/SUM(weights)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

A weighted average counts some values more than others: each value is multiplied by its weight, the products are summed, and the total is divided by the sum of the weights. SUMPRODUCT does the multiply-and-sum in one step. Dividing by SUM(weights) makes the formula correct even when the weights do not add up to 1 or 100%. 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. For “weighted average formula in 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 formula 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 calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Grades 90, 80, 70 carry weights 50%, 30%, 20%. =SUMPRODUCT({90;80;70},{0.5;0.3;0.2})/SUM({0.5;0.3;0.2}) returns 83. The unweighted AVERAGE would say 80 — the heavier weight on the 90 pulls the true result up by three points. Course grades, portfolio returns, average purchase prices, survey scores — whenever observations matter unequally, the weighted average is the honest summary number. 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

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. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Here is the takeaway for “weighted average formula 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

  • Using AVERAGE and silently ignoring the weights.
  • Skipping the division by SUM(weights) when weights do not sum to 1.
  • Misaligned ranges (A2:A10 against B2:B9) causing #VALUE!.
  • Blank weight cells counting as zero without anyone noticing the row dropped out.

Frequently asked questions

What is the weighted average formula in Excel?

=SUMPRODUCT(values,weights)/SUM(weights). There is no built-in WEIGHTEDAVERAGE function.

Do the weights have to add up to 100%?

No — the division by SUM(weights) normalizes any positive weights.

How do I do a weighted average in a pivot table?

Add a helper column value×weight, sum both in the pivot, and divide via a calculated field.

Other ways people ask this

On the way here you may have searched this as “excel formula weighted average” and “excel formula for weighted average” — 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. “excel formula weighted average”, “excel formula for weighted average” all point at the one operation explained on this page, which is why they all lead here.