Formula for Percentage of Total in Excel

There are two ways to “formula for percentage of total in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; 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: divide each value by the total with the total range locked: =B2/SUM($B$2:$B$5), fill it down, then format the column as Percentage.

On this page7
Annotated stepsExcel
1

Enter the values in one column (e.g. B2:B5).

2

In the next column type =B2/SUM($B$2:$B$5).

3

Fill the formula down to the last row.

4

Format the result column with Home ▸ Number ▸ Percentage.

5

Optionally check that =SUM(C2:C5) shows 100%.

=B2/SUM($B$2:$B$5)
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

Percent of total is a share: one part divided by the sum of all parts. The part reference (B2) must move as you fill down, while the total range ($B$2:$B$5) must stay fixed, which is why it carries dollar signs. Formatting the result as Percentage multiplies the display by 100 without changing the value, so the shares always add up to 100%. It is not percentage change, which compares a new value with an old one. 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 “formula for percentage of total 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

Sales in B2:B5 are 120, 80, 200 and 100, a total of 500. In C2 enter =B2/SUM($B$2:$B$5) and fill down to C5, then apply Percentage format: C2 shows 24%, C3 16%, C4 40% and C5 20%, which together make 100%. Shares of a total make categories comparable regardless of size — which product, region or cost line carries the most weight — and they are the numbers behind every pie or 100% stacked chart. 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 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 “formula for percentage of total 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

  • Leaving the total range unlocked, so it shifts as you fill down and the shares are wrong.
  • Multiplying by 100 and also applying Percentage format, which shows 2400% instead of 24%.
  • Using the percentage-change formula (New-Old)/Old, which answers a different question.
  • Including the grand-total row inside the SUM range, which halves every share.

Frequently asked questions

How do I show percent of total in a PivotTable?

Right-click a value, choose Show Values As ▸ % of Grand Total (or % of Column Total).

Why do my percentages not add up to exactly 100%?

Rounded display. The underlying values still sum to 1; increase decimal places to see it.

Can I use a total that is already in a cell?

Yes — =B2/$B$6 works if B6 holds the total; keep the reference absolute.

Other ways people ask this

People reach this page typing “total percentage formula excel”, “formula for total percentage in excel”, “excel formulas for percentage of a total” and “percentage of total function excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “total percentage formula excel”, “formula for total percentage in excel”, “excel formulas for percentage of a total” all point at the one operation explained on this page, which is why they all lead here.