Excel Practice Test

โ–ถ

The Excel formula for percentage is something you'll reach for almost every day at work, whether you're tracking sales numbers, working out your share of a budget, or grading a test. Most people start by typing =A1/B1 and wondering why Excel hands back a weird decimal like 0.357 instead of the clean 35.7% they wanted. That's the percent format trap, and it catches everyone the first time.

Here's the short version: Excel calculates percentages the same way your calculator does, but it stores the result as a decimal. To see a real percentage, you either multiply the result by 100, or you change the cell's number format to Percentage. Both work. Most spreadsheet pros use the format approach because it keeps the underlying math clean for further calculations.

This guide walks through the formulas you'll actually use, with examples you can copy straight into your worksheet. We'll cover percent of total, percent change, percent increase, percent decrease, grade calculations, tax math, and the IF-based shortcuts that handle blanks and zeros without throwing #DIV/0! errors. By the end you should be comfortable building a percentage formula from scratch, even for tricky cases like weighted averages or running totals.

Before we dive into syntax, one quick mindset note. A percentage is just a fraction with 100 on the bottom. So 25% means 25 out of 100, or 0.25 as a decimal. Excel thinks in decimals first, percentages second. Once that clicks, the formulas stop feeling magic and start feeling obvious.

Excel Percentage Formula Cheat Sheet

=A1/B1
Basic percent of total
=(B1-A1)/A1
Percent change formula
Ctrl+Shift+%
Percentage format shortcut
0.357
What Excel shows before formatting

Those four reference points cover almost every percentage problem in a typical spreadsheet. Type =A1/B1 into any cell and you've made a fraction. Hit Ctrl+Shift+% and Excel converts that fraction into a tidy 35.7% display, no extra typing required. The cell still holds 0.357 underneath, so if you pull it into another formula the math stays accurate.

Skip the percentage format and you'll see decimals everywhere. That's fine for engineering or scientific work, but it confuses anyone reviewing a sales report. Always format your percentage cells. It takes two seconds and prevents the awkward moment when your boss asks why everyone scored 0.84 instead of 84%.

The percent change formula deserves a slow look. The pattern is always (New minus Old) divided by Old. Notice it's divided by the original, not the new value. Excel and every finance textbook agrees on this convention, so even if it feels counterintuitive at first, stick with it. Reversing the denominator gives you the wrong answer in trend reports.

The Golden Rule of Excel Percentages

Excel stores percentages as decimals between 0 and 1. The percent symbol you see in the cell is just a display format, not a math operation. This means 50% and 0.5 are the exact same number to Excel. When you write a formula like =A1*20%, Excel reads it as =A1*0.2 internally.

This matters because it changes how you build complex formulas. If you want to add a 15% tax to a price, you can write =A1*1.15 or =A1+(A1*15%). Both give the same answer. Pick whichever reads clearest to you and the next person who opens the file.

Let's tackle the most common Excel formula for percentage: working out what share one number is of another. Say cell A1 holds your test score of 42, and B1 holds the total possible of 60. To find your percentage, type =A1/B1 into C1, then format C1 as Percentage. Excel shows 70%. That's it. The whole formula is one division.

Now scale this up. You've got a sales spreadsheet with 12 months of revenue in column B and you want each month's share of the annual total in column C. In C2 type =B2/SUM(B$2:B$13), copy it down, format column C as percentage. The dollar signs lock the SUM range so every row divides by the same total. Without those dollar signs, C3 would calculate B3 divided by B3:B14, which is wrong.

This lock-the-range trick comes up constantly. Any time you're calculating percent of a fixed total, you need absolute references on the denominator. Press F4 after clicking a reference to toggle through the dollar sign options. Most people use F4 hundreds of times a week without thinking about it.

For percent of a category total, use SUMIF. If column A has region names and column B has sales, the formula =B2/SUMIF(A:A,A2,B:B) tells you what share each row contributes to its own region's total. Copy it down and you've built a quick contribution analysis without a pivot table.

Six Excel Percentage Patterns You'll Use Weekly

๐Ÿ”ด Percent of Total

Use =A1/B1 then format the cell as percentage. For grand totals add SUM in the denominator like =B2/SUM(B$2:B$13). The dollar signs lock the range so every row in the column divides by the same total when you copy the formula down.

๐ŸŸ  Percent Change

Formula is (New minus Old) divided by Old. So =(B2-A2)/A2 compares this period to last period. A negative result means a decrease. This is the standard finance convention used in earnings reports and stock returns everywhere.

๐ŸŸก Percent Increase

To add a percentage to a number multiply by 1 plus the rate. =A1*(1+20%) or =A1*1.2 both add 20% to A1. Useful for markups, raises, and inflation projections where you need to grow a base by a known rate.

๐ŸŸข Percent Decrease

To subtract a percentage multiply by 1 minus the rate. =A1*(1-15%) or =A1*0.85 takes 15% off A1. Useful for sale prices, salary cuts, and any reduction calculation. The (1-rate) wrapper keeps the formula readable.

๐Ÿ”ต Find the Whole

If 30 is 60% of something, what's the full amount? Divide the part by the percentage. =A1/B1 where A1 is 30 and B1 is 60% returns 50. Useful when you know a partial figure and need to back out the total it came from.

๐ŸŸฃ Find the Part

What's 25% of 240? Multiply the whole by the percentage. =A1*B1 where A1 is 240 and B1 is 25% returns 60. The most basic percentage-of-an-amount calculation, used for commissions, taxes, tips, and tip-out tables.

Percent change is where most people trip up, and it's worth slowing down on. The formula is always (New minus Old) divided by Old. Notice it's divided by the original value, not the new one. This is the standard finance and accounting convention, and Excel follows it. If your sales went from 100 to 125, the calculation is (125-100)/100 = 0.25 or 25% increase. Going the other way, if sales drop from 125 to 100, the math is (100-125)/125 = -0.20 or 20% decrease.

The decrease example shows why direction matters. A 25% increase followed by a 20% decrease lands you back at the original number, not at zero net change. That asymmetry catches people in revenue forecasts and stock returns all the time. If you need average monthly growth across a year, use the geometric mean function GEOMEAN, not a regular average.

For percent increase formulas that adjust a price or quantity, the syntax =A1*(1+B1) is the cleanest. If A1 holds the original price and B1 holds the percentage increase (formatted as percent), this multiplies them correctly. Want to add exactly 7.5% sales tax? Write =A1*1.075. Want to apply a 30% discount? Write =A1*0.70 or =A1*(1-30%). Both styles work, both are readable.

One sneaky bug: typing =A1*1+B1 instead of =A1*(1+B1). Without the parentheses, Excel multiplies A1 by 1 first, then adds B1. You'd get an extra dollar in your total instead of a percentage adjustment. Parentheses cost nothing, so use them liberally.

Excel Percentage Formulas by Use Case

๐Ÿ“‹ Sales

For a sales spreadsheet, calculate each rep's percent of team total with =B2/SUM(B$2:B$50). To find month-over-month growth, use =(B3-B2)/B2 in column C. To project a 10% lift on next quarter's target, write =B2*1.1. Format all percentage cells with Ctrl+Shift+5 so reports look clean. For quota attainment, divide actual by target: =B2/C2 then format as percentage. Reps below 100% are under quota, above are over.

๐Ÿ“‹ Grades

For test scores, divide points earned by points possible: =A1/B1 formatted as percentage. To convert percentage to letter grade, nest IFs: =IF(A1>=0.9,"A",IF(A1>=0.8,"B",IF(A1>=0.7,"C",IF(A1>=0.6,"D","F")))). For weighted grades where homework is 30% and tests are 70%, use =A1*0.3+B1*0.7. For pass/fail thresholds, =IF(A1>=0.7,"Pass","Fail") gives instant verdicts on a class roster.

๐Ÿ“‹ Tax

To add tax to a subtotal, multiply by 1 plus the tax rate. For 8.875% NYC sales tax: =A1*1.08875. To extract just the tax from a tax-inclusive price: =A1-(A1/1.08875). To find pre-tax amount from total: =A1/1.08875. Round all currency results with ROUND(formula,2) to avoid fraction-of-a-cent errors that confuse accounting. For tiered tax brackets, use SUMPRODUCT against rate and threshold arrays rather than nesting IFs.

๐Ÿ“‹ Discounts

For percent off pricing, multiply by 1 minus the discount: =A1*(1-B1) where B1 holds the discount as a percentage. To show savings amount: =A1*B1. To compare two discount offers, calculate final price both ways and let Excel pick the lower with =MIN. Compound discounts apply sequentially: =A1*(1-0.20)*(1-0.10) gives a different answer than a flat 30% off. A 20% then 10% stack equals 28% total discount, not 30%.

Notice how the same percentage logic shows up across totally different contexts. Sales tracking, grading, tax math, and retail discounts all lean on the same handful of formula patterns. Master those patterns once and you can adapt them on the fly to whatever spreadsheet lands on your desk next.

The compound discount tab deserves extra attention because it's a common source of disputes. If a store advertises 20% off, then offers an extra 10% off the discounted price at checkout, the final price is 72% of the original (0.80 times 0.90), not 70%. Customers expect 30% off, the math gives 28%. Build a quick Excel sheet to compare and you'll save yourself arguments at the register or in client meetings.

Same compounding shows up in interest calculations. A 5% annual rate compounded monthly is not the same as 5% simple interest. The Excel function FV handles future value with compounding, but if you want to see the math yourself, =A1*(1+0.05/12)^12 shows you what one dollar grows to after one year of monthly compounding at 5%. Spoiler: it's about 5.116%, not flat 5%.

The IFERROR wrapper is the single biggest upgrade you can make to any percentage formula heading into a shared workbook. Source data has gaps. Reps miss a month. Categories empty out. Without IFERROR, every gap turns into a screaming red #DIV/0! that makes your file look broken even when the logic is fine. With IFERROR, the same gap shows a clean zero or dash and the rest of the dashboard keeps working.

For percentage formulas specifically, the most common error is dividing by zero. The second most common is dividing by a text value, which throws #VALUE!. IFERROR catches both. If you want to handle them differently, nest IFERROR inside IFNA, or use IFS for cleaner branching: =IFS(B1=0,0,ISTEXT(B1),"check input",TRUE,A1/B1). This kind of defensive formula writing separates the spreadsheets that hold up under scrutiny from the ones that break in front of your team.

One more tip: when you copy a percentage formula down a column, double-check the references with F2 to enter edit mode. Excel highlights the source cells in colors. If anything looks off, fix it before you ship the file. Five seconds of checking saves an hour of explaining errors later.

Percentage Formula Checklist

Format the result cell as Percentage (Ctrl+Shift+5) before you start
Lock the denominator with $ signs when dividing by a grand total
Wrap the division in IFERROR to handle zero or blank denominators
Use parentheses around (New-Old) when calculating percent change
Multiply by (1+rate) for increases, (1-rate) for decreases
Round currency outputs with ROUND(formula,2) to avoid penny errors
Double-click the fill handle to copy formulas down a column quickly
Press F4 to cycle through absolute reference styles

Beyond the everyday formulas, Excel ships with several percentage-aware functions worth knowing. PERCENTRANK returns the rank of a value within a dataset as a percentage, useful for grading on a curve. PERCENTILE goes the other direction, returning the value at a given percentile. If your dataset is column A, =PERCENTILE(A:A,0.9) gives you the 90th percentile cutoff. That's the score above which only 10% of entries fall. Salary benchmarking, test calibration, and customer segmentation all lean on these functions.

For weighted percentages, SUMPRODUCT shines. Say you have grades in B2:B10 and weights in C2:C10. The weighted average is =SUMPRODUCT(B2:B10,C2:C10)/SUM(C2:C10). The numerator multiplies each grade by its weight and sums them, the denominator normalizes by total weights so percentages don't need to sum to exactly 100%. This formula scales to any number of inputs without rewriting.

There's also the running percentage pattern. If column B holds daily revenue and you want each row's share of the cumulative total to date, use =B2/SUM(B$2:B2). The first reference is locked, the second drifts. Copy it down and each row divides by everything above it including itself. This is how cumulative percent charts are built behind the scenes in business intelligence dashboards.

Test Your Excel Skills with Practice Questions

If the syntax is fresh in your head, run through a few practice questions before you tackle a real workbook. Active recall beats re-reading every time. The Excel practice quizzes on this site cover percentages, lookups, conditional formatting, and pivot tables. Drilling on percentage problems specifically helps because the formula patterns repeat with small tweaks across every business scenario you'll meet.

People preparing for the Microsoft Excel Expert exam, the MOS certification, or a finance job interview all hit the same wall around percentages. The questions look easy until you realize the test wants you to write the formula by hand, no autocomplete, no error wizard. Build muscle memory now and the test takes care of itself.

Excel Percentage Pros and Cons

Pros

  • One formula pattern (=A/B) covers most percentage problems
  • Built-in % format handles display, no manual *100 needed
  • Easy to combine with IF, SUM, SUMIF for advanced logic
  • Compatible across Excel desktop, Excel Online, and Google Sheets
  • F4 absolute references make formulas reusable across rows

Cons

  • Display format hides the decimal, which confuses new users
  • #DIV/0! errors break dashboards if denominators are zero
  • Compound percentages don't add the way intuition suggests
  • Rounded display values can mislead when totals don't match
  • Percent change formula direction trips up financial reporting

The strengths list shows why Excel percentages dominate office work. The pattern is short, it composes well with other functions, and it travels across platforms. You can build a formula in Excel desktop, paste it into Google Sheets, and it works without changes. That portability matters when you're collaborating with people who aren't on your software stack.

The weaknesses list points at the same gotchas every spreadsheet trainer warns about. Rounding is the most subtle one. If you show three percentages rounded to whole numbers, they might display as 33%, 33%, 34% but actually sum to 99.7%. That's not a bug, that's just rounding. For audit-ready reports, either show one extra decimal place or add a note explaining the rounding convention.

Compound percentage confusion is the second silent killer. Telling a client they got a 50% discount when you stacked two 25% offs sequentially is technically wrong, the actual discount is 43.75%. Build a quick check formula whenever you stack percentages and you'll save yourself the embarrassing correction email later.

Excel Questions and Answers

What is the basic Excel formula for percentage?

The basic Excel formula for percentage is =part/whole formatted as a percentage. For example, =A1/B1 where A1 is your score and B1 is the total possible. Press Ctrl+Shift+5 to apply the percentage format. Excel multiplies the result by 100 visually and adds the % sign for you. The underlying value stays as a decimal so further calculations work correctly.

How do I calculate percent change in Excel?

Use the formula =(New-Old)/Old. If your sales went from 100 to 125, the formula =(125-100)/100 returns 0.25 or 25%. Always divide by the original value, not the new one. A negative result means a decrease. For year-over-year growth across multiple periods, this formula works in every cell of your trend column.

How do I add a percentage to a number in Excel?

Multiply by 1 plus the percentage. To add 20% to A1, write =A1*1.2 or =A1*(1+20%). Both give identical results. For sales tax of 8.875%, use =A1*1.08875. The parentheses-and-percent version reads more clearly when other people review your spreadsheet.

How do I subtract a percentage from a number?

Multiply by 1 minus the percentage. To take 15% off A1, write =A1*0.85 or =A1*(1-15%). For a 30% discount on column B prices, =B2*(1-30%) gives the sale price. To show the savings amount instead, use =B2*30%. Round currency outputs with ROUND(formula,2) so you don't display half-cents.

Why does my Excel percentage formula show a decimal?

Excel stores percentages as decimals. The cell shows 0.5 instead of 50% because the percent format isn't applied. Select the cell, press Ctrl+Shift+5, and Excel switches the display to percentage. The underlying value doesn't change, only how it appears. This decimal-storage approach lets you use percentage cells in other formulas without converting.

How do I avoid the #DIV/0 error in percentage formulas?

Wrap the division in IFERROR: =IFERROR(A1/B1,0). This returns zero instead of an error when B1 is empty or zero. For clearer labeling use =IF(B1=0,"N/A",A1/B1). Both approaches keep dashboards looking professional when source data has gaps. Always add IFERROR before sharing a workbook.

How do I calculate percent of total in Excel?

Divide each value by the grand total and lock the denominator with dollar signs. In C2 type =B2/SUM(B$2:B$13) and copy it down. The dollar signs keep the SUM range fixed while the numerator B2 shifts to B3, B4, and so on as you copy. Format column C as percentage and you have each row's contribution to the total.

What's the shortcut to format a cell as percentage?

Press Ctrl+Shift+5 (which is Ctrl+Shift+% on US keyboards). This applies the default percentage format with no decimal places. To add decimal precision, hit Ctrl+1 to open Format Cells, pick Percentage, and set the decimal places you want. The shortcut works the same in Excel desktop, Excel Online, and Excel for Mac.

One concept that confuses many spreadsheet users is the difference between percentage points and percent change. If a metric moves from 30% to 40%, that's a 10 percentage point increase, but a 33% relative increase. Finance reports and academic papers care a lot about this distinction. In Excel, the percentage point gap is just subtraction: =B1-A1 when both are formatted as percent. The relative change is the regular percent change formula =(B1-A1)/A1. Use the right one for the right audience.

The TEXT function lets you format a number as a percentage inside a longer string. ="You scored "&TEXT(A1,"0.0%")&" on the exam" builds a sentence with the percentage baked in. Handy for email merges, dashboards, and any cell where you need text and numbers side by side. The 0.0% format string controls precision, so 0.876 displays as 87.6%. Add more zeros for finer precision when needed.

Conditional formatting can also color-code percentage cells based on their value. Highlight cells above 90% in green, below 50% in red, and Excel paints your dashboard for you. Pick Home, Conditional Formatting, Color Scales, and choose the green-yellow-red gradient. Apply it to your percentage column and the visual feedback works automatically as values change.

Practice More Excel Formulas

You've now got the Excel formula for percentage in every form that actually matters at work: simple percent of total, percent change, percent increase, percent decrease, weighted averages, tax math, and the error-handling wrappers that keep your formulas working when data goes sideways. The patterns repeat. Once you can write =A1/B1 with confidence and remember to format the cell as percentage, almost every other percentage formula is a small variation on that base.

Build a personal cheat sheet workbook with one example of each pattern, labelled with notes. Save it somewhere you'll find it, like a folder called Excel Reference on your desktop or in OneDrive. Whenever you hit a percentage problem in the wild, copy the closest match from your cheat sheet and adjust the cell references. This is exactly how spreadsheet veterans work. Nobody writes percentage formulas from memory all day. They template once and reuse forever.

For deeper drills, the practice tests on this site give you timed multiple-choice questions on percentages alongside other Excel skills like VLOOKUP, INDEX/MATCH, pivot tables, and conditional formatting. Spending twenty minutes a day on those drills for a week pays off in fluency. When the next quarterly report lands on your desk, you'll write percentage formulas without breaking stride, format cells with the keyboard shortcut, and add IFERROR wrappers as a reflex.

One last note. Excel formulas are powerful but they're also easy to break by accident. Always test new formulas on a known answer before you trust them. If you know 50 is 25% of 200, type those numbers into a scratch area, run your formula, and confirm the result. This habit catches typos, broken references, and logic errors before they reach a stakeholder. Two seconds of sanity-checking has saved more careers than any other Excel habit.

โ–ถ Start Quiz