Excel Practice Test

โ–ถ

Percentages turn raw numbers into meaning. A 0.18 sitting in a cell is just a decimal. Show it as 18% and suddenly you have a discount, a tax rate, a market share, a growth signal โ€” something you can act on. That is the whole point of learning how to calculate percentage in Excel: not just to format a number with a % sign, but to translate values into the language your boss, your team, and your spreadsheets actually speak.

Here is the thing most tutorials skip. Excel does not have one single "percentage formula." It has a percentage format, and it has dozens of math patterns you build with division, multiplication, and cell references. The format multiplies your number by 100 and adds a % sign. The math is up to you. Get those two ideas separated in your head and the rest gets easy fast.

This guide walks through every common percentage situation you will run into at work, in school, or while building a dashboard. We will calculate percentage of a total. Percentage change between two numbers. Percentage increase. Percentage decrease. Weighted averages. Tax-inclusive prices. Growth rates across years. We will cover keyboard shortcuts, the difference between formatting and multiplying by 100, why your formula sometimes shows 1800% instead of 18%, and how to lock cell references so dragging a formula down does not break everything.

By the end, you will not just copy formulas. You will understand why each one works, which means when the exam question or the real-world problem changes shape, you will still know what to type.

Excel Percentage Quick Facts

Ctrl+Shift+%
Apply percentage format instantly
x100
What the % format does automatically
=B/A
Basic percentage-of-total formula
=(New-Old)/Old
Percentage change formula

The Two Things You Have to Separate: Format vs. Math

Before any formula makes sense, you need to internalise one rule. The percentage format in Excel is purely cosmetic. It takes whatever number sits in the cell and displays it multiplied by 100, with a % symbol pinned to the end. Type 0.5 into a percent-formatted cell and you see 50%. Type 50 into that same cell and you see 5000%. The underlying value never changes. Only the display does.

This is why so many beginners get burned. They write =A1*100 to "convert to percent," then apply the percent format on top, and end up multiplying by 100 twice. The cell screams 5000% when they expected 50%. Fix: pick one path. Either let the format do the x100 for you (preferred) or skip the format and multiply by 100 manually inside the formula. Never both.

The keyboard shortcut Ctrl+Shift+% (Cmd+Shift+% on Mac) applies percent formatting to the selected range in one keystroke. It also rounds to zero decimal places by default, which can hide precision you need. Increase decimals with Alt+H+0 after, or right-click and pick Format Cells to control it precisely.

Excel's percentage format multiplies the displayed value by 100. So 0.25 shows as 25%, not 0.25%. If you want a cell to show 25% from a calculation like 50/200, do not multiply by 100 in the formula โ€” just write =50/200 and apply percentage format. Otherwise you will get 2500%. This single rule is the source of nearly every percentage error you will encounter, so internalising it early saves hours of debugging later. When in doubt, type a known value like 0.5 into a percent-formatted cell and confirm it displays as 50%.

Calculating Percentage of a Total

This is the most common case. You have a part. You have a whole. You want to know what slice of the whole that part represents. The formula is dead simple: =Part/Whole, then format as percentage.

Imagine cell A1 holds 250 (your sales this month) and B1 holds 1000 (team total). In C1, type =A1/B1 and press Enter. You will see 0.25. Hit Ctrl+Shift+% and it flips to 25%. Done. You contributed a quarter of the team's revenue.

It scales the same way for thousands of rows. If you have a column of individual product sales in B2:B500 and you want each row to show what percent it is of the overall total, the formula in C2 becomes =B2/SUM(B$2:B$500). The dollar signs lock the SUM range so when you drag the formula down, B2 climbs to B3, B4, B5, but the denominator never moves. This is called an absolute reference, and it is the difference between a formula that works and one that returns garbage on row 17.

Calculating Percentage Change Between Two Numbers

Want to know how much sales grew from January to February? The formula is =(New-Old)/Old. If January is in A1 and February in B1, type =(B1-A1)/A1 into C1 and format as percent. A positive result means growth. Negative means decline.

One trap. If the old value is zero, this formula returns #DIV/0!. Wrap it in IFERROR or IF to handle that gracefully: =IFERROR((B1-A1)/A1, "N/A"). For early-stage data where you go from 0 sales to 10 sales, there is technically no defined percentage increase (you cannot divide by zero), so showing N/A is honest.

Four Core Percentage Patterns

๐Ÿ”ด Percentage of Total

=Part/Whole. Shows what slice one value is of a larger pool. Lock the denominator with $ when dragging across rows.

๐ŸŸ  Percentage Change

=(New-Old)/Old. Positive means growth, negative means drop. Use IFERROR to handle zero starting values.

๐ŸŸก Percentage Increase

=Original*(1+Pct). Adds a markup. Useful for tax-inclusive prices, raises, projected growth.

๐ŸŸข Percentage Decrease

=Original*(1-Pct). Strips a discount. Standard for sale prices, depreciation, budget cuts.

Percentage Increase and Decrease in Real Scenarios

Marking a product up by 15%? You do not need a separate "increase" formula. Just multiply by 1.15. The 1 keeps the original value intact and the 0.15 adds the markup on top. In Excel, if A1 holds the base price and B1 holds 0.15 (formatted as 15%), the marked-up price is =A1*(1+B1). Same shape works for tax: net price times (1 + tax rate) gives gross price.

Going the other direction is identical with a minus sign. A 20% discount on a $80 item is =80*(1-0.20), which equals $64. If you want to go from a discounted price back to the original, divide instead: =64/(1-0.20) returns 80. This reverse calculation trips people up regularly because the intuition says "add 20% back," but adding 20% to 64 gives 76.80, not 80. The asymmetry is real โ€” taking 20% off then adding 20% back never lands where you started.

For a column of products with individual discount rates in column B and base prices in column A, the formula =A2*(1-B2) dragged down handles every row. No locking needed because both references move together.

Common Percentage Formulas by Use Case

๐Ÿ“‹ Sales Tax

Adding tax on top of a net price. Net is in A1, tax rate in B1 (as 8.5% for example).

Gross = =A1*(1+B1)

If you need just the tax amount (the dollar value of the tax itself), it is =A1*B1. To extract net from a tax-inclusive total: =GrossTotal/(1+B1).

๐Ÿ“‹ Discount

Removing a markdown from list price. List in A1, discount rate in B1.

Sale Price = =A1*(1-B1)

To find how much you saved: =A1*B1. To work backwards from sale price to original list: =SalePrice/(1-B1).

๐Ÿ“‹ Tip

Calculating restaurant tip. Bill in A1, tip rate in B1 (typically 15%โ€“20%).

Tip Amount = =A1*B1

Total bill with tip: =A1*(1+B1). For splitting between people: =A1*(1+B1)/PartySize.

๐Ÿ“‹ Grade Score

Converting raw test scores to percentages. Points earned in A1, total possible in B1.

Percentage Score = =A1/B1

Format as percent. For weighted grades across multiple assessments, use SUMPRODUCT: =SUMPRODUCT(Scores, Weights)/SUM(Weights).

๐Ÿ“‹ Commission

Sales commission on closed deals. Deal value in A1, commission rate in B1.

Commission = =A1*B1

Tiered commission with IF: =IF(A1>10000, A1*0.10, A1*0.05) pays 10% over $10k, 5% below.

Year-Over-Year Growth and Compound Rates

One of the most asked questions in finance interviews: "What was the year-over-year growth?" The single-period answer is the same percentage change formula we saw earlier: (Year2 - Year1) / Year1. But when you have five or ten years of data and want the average growth rate compounded across all those years, you need the Compound Annual Growth Rate (CAGR).

CAGR in Excel: =(EndingValue/BeginningValue)^(1/Years)-1, formatted as percentage. If revenue went from $100,000 to $250,000 over 5 years, the formula is =(250000/100000)^(1/5)-1, returning roughly 20.11%. That is the steady annual rate that would have produced the same end result if growth had been smooth.

CAGR matters because raw percentage change over 5 years (in this case 150%) tells you nothing about pace. A company that grew 150% in year one and stagnated for four years looks identical to one that grew 20% every year, until you calculate CAGR and realise they are not the same business at all.

Weighted Averages with Percentages

When parts of a whole carry different weights, a simple average lies to you. A student with 90% on a quiz that counts 10% and 60% on a final that counts 60% does not have a 75% average โ€” they have a weighted average that pulls heavily toward the final. The right formula: =SUMPRODUCT(Scores, Weights)/SUM(Weights). Excel multiplies each score by its weight, sums everything, then divides by total weight. The result respects the actual importance of each component.

Absolute vs. Relative References (the Dollar Sign Thing)

Drag a formula down a column and watch what happens. =A1+B1 in row 1 becomes =A2+B2 in row 2, =A3+B3 in row 3, and so on. That is a relative reference. Excel adjusts cell addresses automatically as you copy the formula. Most of the time, this is exactly what you want.

But sometimes you need one reference to not move. When calculating each row's percentage of a grand total, the grand total cell has to stay fixed. That is where dollar signs come in. =B2/$B$10 locks both the column and row of B10. Drag it down and the formula becomes =B3/$B$10, =B4/$B$10, =B5/$B$10. The denominator never budges.

You can also lock just the column ($B10) or just the row (B$10). F4 is the keyboard shortcut: click into a cell reference inside a formula, press F4 to cycle through the four states (B10, $B$10, B$10, $B10). This single shortcut saves more time than almost any other Excel skill once you internalize it.

Why Your Formula Sometimes Returns a Decimal, Sometimes a Percent

If you write =B1/A1 in a freshly opened workbook, Excel shows 0.25. Apply percent format and you get 25%. But if you copy that formula into a cell that was previously formatted as percent, it shows 25% immediately without you touching the format. The math did not change. The display did. This is why two analysts can run the exact same formula and see different-looking results. Always check the format of the destination cell before debugging.

Percentage Formula Debugging Checklist

Is the cell formatted as percent? (Ctrl+1 to check)
Did you accidentally multiply by 100 in the formula AND apply percent format?
Is the divisor zero anywhere? Wrap in IFERROR.
Did you lock the denominator with $ when dragging down a column?
Are you using the right base โ€” original value, not new value โ€” for percentage change?
Did you mix up percentage points vs. percent change? (Going from 20% to 25% is +5 percentage points but +25% change.)
Practice Excel Percentage Questions

Working with Cumulative Percentages

Sometimes you do not just want each row's share of total โ€” you want the running cumulative percentage. Like a Pareto chart, where you can see that the top 3 products account for 80% of revenue. The setup uses SUM with an expanding range.

If revenue per product is in B2:B11, and you want cumulative percentages in C2:C11, type into C2: =SUM(B$2:B2)/SUM(B$2:B$11). The first reference, B$2:B2, locks only the start of the range. As you drag down, it becomes B$2:B3, then B$2:B4, then B$2:B5 โ€” expanding one row at a time. The denominator stays locked at the full range. Each result is the percentage covered up through that row. Format as percent, sort descending, and you have a classic 80/20 analysis.

Percentage Difference vs. Percentage Change

These sound the same but they are not. Percentage change needs a clear before-and-after โ€” last year vs. this year, control vs. experiment. Percentage difference compares two values without one being more recent or more correct than the other. Like comparing the SAT scores of two equally valid groups.

Formula for percentage difference: =ABS(A1-B1)/((A1+B1)/2). The denominator is the average of the two values, not one specific baseline. The ABS function makes the result always positive because direction does not matter. Most business contexts use percentage change. Scientific and statistical contexts often use percentage difference. Pick deliberately based on which question you are actually answering.

Percent Format vs. Multiply by 100 in Formula

Pros

  • Applying percent format keeps the underlying value as a decimal, which is what every other formula expects when referencing the cell.
  • Format is reversible โ€” you can switch back to decimal display without rebuilding formulas.
  • Charts, conditional formatting, and statistical functions all work natively with decimal values formatted as percent.
  • One source of truth in the cell, presentation handled separately.

Cons

  • Multiplying by 100 inside the formula hard-codes the conversion, so anyone referencing the cell later gets a number that needs to be divided by 100 again to be useful in calculations.
  • Confusing for collaborators โ€” they see 25 in the cell with no % sign and may not know what it represents.
  • Breaks compatibility with PERCENTILE, PERCENTRANK, and other functions that expect decimal probabilities.

Quick Keyboard Shortcuts for Percentage Work

Speed matters when you are working through hundreds of cells. Ctrl+Shift+% applies percentage format to the selection (no decimals). Ctrl+1 opens the Format Cells dialog where you can fine-tune decimal places, negative number display, and currency-percent combinations. Alt+H+0 increases decimal places by one. Alt+H+9 decreases. F4 toggles absolute and relative references inside a formula being edited. Ctrl+; inserts today's date for dated percentage reports.

For data entry, typing the % sign at the end of a number tells Excel the value is already a percentage. So 18% gets stored as 0.18 and displayed as 18%. This is usually what you want for rates, growth, and ratios. If you accidentally drop the % sign and type 18, then format the cell as percent, you get 1800%. The fastest fix is to divide by 100 once: type 100 in an empty cell, copy it, then Paste Special > Divide onto the broken column.

Formatting Decimals: How Many to Show?

Default percent format rounds to whole numbers. 0.187 shows as 19%. For financial reporting this is often too coarse โ€” 19% might be 18.5% or 19.4%, and that 0.9 percentage points could be hundreds of thousands of dollars. Increase decimal places with Alt+H+0 to show 18.7%. For statistical work, go to two or three decimals.

But do not over-show precision you do not have. If you are estimating market share from a survey of 200 people, showing 18.7234% implies confidence the data cannot support. One decimal place is usually the sweet spot for business reports, two for finance, three or more only when the source data warrants it.

Excel Questions and Answers

What is the basic formula for calculating percentage in Excel?

The basic formula is =Part/Whole, then format the result as percentage. For example, if you sold 250 units out of 1000 total, the formula =250/1000 returns 0.25, which Excel displays as 25% when you apply the percentage format using Ctrl+Shift+%.

Why does my percentage formula show 1800% instead of 18%?

You likely entered the raw number without a % sign, then applied percentage format. Excel multiplies the underlying value by 100 to display it. So 18 becomes 1800%. To fix, either type 18% directly, divide the cell by 100, or remove the *100 from your formula if you also applied percent format.

How do I calculate percentage change between two numbers?

Use =(New-Old)/Old and format as percent. If sales went from $200 to $250, the formula =(250-200)/200 returns 0.25 or 25% growth. Wrap in IFERROR to handle zero starting values: =IFERROR((B1-A1)/A1, "N/A").

What is the difference between percentage points and percent change?

Percentage points measure absolute difference between two percentages. Going from 20% to 25% is a 5 percentage point increase. Percent change measures relative difference. From 20% to 25% is also a 25% increase because 5 is 25% of 20. News headlines often confuse these two โ€” always check which one is being reported.

How do I calculate percentage increase or markup?

Multiply the original value by (1 + percentage). For a 15% markup on $100: =100*(1+0.15) returns $115. For tax-inclusive pricing or any "add a percentage" scenario, this single pattern works. Going backwards from gross to net: =Gross/(1+TaxRate).

How do I calculate a discount or percentage decrease in Excel?

Multiply by (1 - percentage). A 20% discount on $80: =80*(1-0.20) returns $64. To find just the discount amount: =80*0.20 gives $16. To work back from sale price to original list: =SalePrice/(1-DiscountRate).

Why does my percentage change formula return #DIV/0!?

The old value (denominator) is zero. Division by zero is undefined. Wrap your formula in IFERROR to handle gracefully: =IFERROR((B1-A1)/A1, "N/A"). When starting from zero, there is no defined percentage growth โ€” you went from nothing to something.

How do I calculate compound annual growth rate (CAGR)?

Use =(EndingValue/BeginningValue)^(1/Years)-1, formatted as percent. If revenue grew from $100K to $250K over 5 years, the formula =(250000/100000)^(1/5)-1 returns about 20.11%. This is the steady annual rate that would produce the same end result with smooth growth.

What is the keyboard shortcut to format as percentage?

Ctrl+Shift+% (Cmd+Shift+% on Mac) applies percentage format with zero decimal places. Press Alt+H+0 to add decimal places, Alt+H+9 to remove them. Ctrl+1 opens the full Format Cells dialog for precise control over decimals, negative number display, and color coding.

How do I lock cells when calculating percentage of total across a column?

Use absolute references with dollar signs. For percentage of grand total in row 2: =B2/$B$10. The $B$10 stays fixed when you drag the formula down. Press F4 inside a formula to cycle through reference types: B10, $B$10, B$10, $B10. This is the single most important Excel skill for percentage work across columns.
Test Yourself on Excel

Putting It Together: A Quick Real-World Walkthrough

Imagine you have a sales spreadsheet. Column A holds product names. Column B holds units sold. Column C will hold each product's percent of total. Column D will hold last month's sales for comparison. Column E will hold the month-over-month change.

In C2 type =B2/SUM(B$2:B$50) and format as percent. Drag down. Every row now shows its percentage of monthly total, and the SUM range stays locked. In E2 type =IFERROR((B2-D2)/D2, "N/A") and format as percent. Drag down. Every row now shows percent change vs. last month, with #DIV/0! errors hidden as N/A. Add a Pareto column in F: sort by units first, then in F2 type =SUM(B$2:B2)/SUM(B$2:B$50) and drag down to see cumulative share row by row.

That single sheet now tells you the share of every product, how each is trending vs. last month, and which products account for the bulk of revenue. Three percentage techniques. One coherent dashboard. No external tools needed.

The Mental Model That Makes Percentages Click

Strip away the Excel-specific syntax for a second. A percentage is just a fraction with the denominator forced to 100. That is it. Saying "25%" is the same as saying "25 per hundred" or "one-quarter." Once that mental anchor is in place, every formula in this guide stops being a thing to memorise and becomes a thing to derive on the fly.

Need to find what percent A is of B? You are asking "how many per hundred of B does A represent?" Divide A by B to get the fraction, format as percent to let Excel scale it to per-hundred for display. Need percentage change? You are asking "by how many per hundred did the value shift relative to its starting point?" The starting point is the base, so it goes in the denominator. The shift is new minus old, so it goes in the numerator. Every other percentage formula in business is some variation on these two ideas.

The skill is not memorising formulas. It is recognising which percentage pattern the question is asking for, then knowing which Excel shapes match it. Part of total. Change from baseline. Markup. Discount. Compound rate. Weighted average. Cumulative share. Once you can pattern-match the question to the formula, Excel becomes a quiet partner instead of an obstacle.

Every percentage problem you will ever face at work fits one of these shapes. Practice them until they are automatic, and you will spend your spreadsheet time thinking about the business question โ€” not fighting with the syntax. That is when Excel stops being a chore and starts being leverage.

โ–ถ Start Quiz