How to Subtract a Percentage From a Number in Excel

📅 Mar 20, 2026 📝 Sarah Miller

Manually calculating budget deductions in Excel can be frustrating and prone to costly errors. When managing standard funding sources, such as institutional grants or corporate sponsorships, maintaining precise allocation data is critical. Utilizing the correct subtraction formula grants financial analysts absolute accuracy and efficiency in their projections. However, a key stipulation is that your percentage cells must be formatted correctly within Excel to avoid mathematical errors. For instance, deducting a 15% administrative fee from a $10,000 grant using the formula =A2*(1-B2) yields exactly $8,500. Below, we will break down this essential formula step-by-step to streamline your spreadsheet workflows.

How to Subtract a Percentage From a Number in Excel

Whether you are calculating holiday discounts, adjusting budgets, estimating net income after taxes, or projecting business depreciation, subtracting a percentage from a number is one of the most common tasks you will perform in Microsoft Excel.

While this seems like a straightforward mathematical operation, Excel handles percentages in a specific way that can sometimes confuse beginners. If you try to write a formula like =100 - 15%, Excel will not give you 85; instead, it will return 99.85. This occurs because Excel treats percentages as decimals (where 15% is equal to 0.15).

In this comprehensive guide, we will explore the correct formulas to subtract a percentage from a number in Excel, look at real-world examples, and learn a few advanced techniques to apply these calculations across entire datasets efficiently.

The Fundamental Math Behind Percentages in Excel

Before writing the formulas, it helps to understand how Excel interprets percentages. In the background, Excel always stores percentage values as decimals:

  • 10% is stored as 0.1
  • 50% is stored as 0.5
  • 100% is stored as 1.0

If you want to reduce a number by a specific percentage, the mathematical equation is:

New Value = Original Value - (Original Value * Percentage)

By using basic algebra to simplify this equation, we can factor out the Original Value:

New Value = Original Value * (1 - Percentage)

This simplified formula is the most efficient and standard way to write this calculation in Excel.


Method 1: The Standard Formula (Using Cell References)

In professional spreadsheets, it is best practice to keep your data dynamic. This means keeping your original numbers in one column and your percentage rates in another, referencing their respective cells in your formula.

The Formula:

=A2 * (1 - B2)

Where:

  • A2 contains the original number (e.g., retail price).
  • B2 contains the percentage you want to subtract (e.g., discount rate).

Step-by-Step Example:

Imagine you run an online store and want to calculate the promotional price of several products during a seasonal clearance event.

Product (Column A) Original Price (Column B) Discount Rate (Column C) Formula (Column D) Sale Price (Output)
Leather Jacket $200.00 15% =B2*(1-C2) $170.00
Running Shoes $120.00 25% =B3*(1-C3) $90.00
Backpack $80.00 10% =B4*(1-C4) $72.00

To apply this to your spreadsheet:

  1. Click on cell D2 (the first row under "Sale Price").
  2. Type the formula: =B2*(1-C2) and press Enter.
  3. Hover your mouse pointer over the bottom-right corner of cell D2 until a small black cross appears (the Fill Handle).
  4. Double-click or drag the Fill Handle down to copy the formula to the remaining rows.

Method 2: Subtracting a Hardcoded Percentage

Sometimes you do not need a separate column for your percentage rates. If you want to apply the exact same discount or reduction rate to an entire list of numbers, you can hardcode the percentage directly into your formula.

The Formula:

=A2 * (1 - 0.15)

Alternatively, you can write it like this:

=A2 * (1 - 15%)

Both formulas achieve the exact same result because Excel automatically converts "15%" to "0.15" within the calculation.

Note: While hardcoding is fast, it makes your spreadsheet less flexible. If your discount rate changes from 15% to 20% in the future, you will have to manually edit every single formula instead of simply updating one cell.


The Common Pitfall: Why "=A2 - B2%" Fails

One of the most frequent mistakes Excel users make is writing the formula like this:

Incorrect: =A2 - B2 (where B2 contains 15%)

If cell A2 is 100 and B2 is 15%, you are trying to calculate 100 minus 15% of 100. However, Excel reads B2 as the decimal 0.15. Thus, the calculation Excel executes is:

100 - 0.15 = 99.85

To avoid this error, you must explicitly tell Excel to multiply the percentage by the original value before subtracting it:

Correct alternative (long form): =A2 - (A2 * B2)

This longer formula works perfectly fine, but the factored version =A2 * (1 - B2) is generally preferred by spreadsheet professionals because it is cleaner and shorter.


Method 3: Subtracting an Entire Column of Percentages Instantly (No Formulas)

If you have a list of prices and you want to permanently decrease them by a certain percentage without creating a new formula column, you can use Excel's built-in Paste Special feature. This directly overwrites your original data with the new, reduced numbers.

Step-by-Step Guide:

  1. Identify your reduction multiplier. For example, if you want to subtract 15%, your multiplier is 0.85 (which is 1 - 0.15). If you want to subtract 20%, your multiplier is 0.80.
  2. Type this multiplier (e.g., 0.85) into any empty, unused cell in your worksheet.
  3. Select that cell and press Ctrl + C to copy it.
  4. Highlight the entire range of numbers/prices you want to reduce.
  5. Right-click the selected range and choose Paste Special... from the context menu (or press Ctrl + Alt + V).
  6. In the Paste Special dialog box, select Multiply under the "Operation" section.
  7. Click OK.
  8. Delete the temporary multiplier value from the empty cell you used in step 2.

All your highlighted numbers will instantly be updated to reflect the 15% reduction, saving you the step of writing and dragging formulas.


Advanced Scenario: Tiered and Conditional Percentage Subtractions

In business settings, you rarely apply a flat rate to everything. Often, you might want to subtract different percentages based on the value of the original number. For this, we can combine our percentage formula with the IF or IFS functions.

Example Scenario:

A distributor offers tiered discounts based on the order volume:

  • Orders under $1,000 get no discount (0%).
  • Orders between $1,000 and $5,000 get a 5% discount.
  • Orders over $5,000 get a 10% discount.

The Formula:

=IFS(A2<1000, A2, A2<=5000, A2*(1-0.05), A2>5000, A2*(1-0.10))

In this formula, Excel dynamically checks the order value in cell A2 and applies the correct mathematical percentage subtraction depending on which threshold is met.


Summary of Best Practices

  • Always format your percentage columns as "Percentage" in the Home > Number Format dropdown to make your spreadsheets easy to read.
  • Remember that Excel stores 10% as 0.10; adjusting your manual math calculations around this reality prevents logical errors.
  • Use cell referencing (=A2*(1-B2)) rather than hardcoded numbers to keep your formulas dynamic and easy to update.
  • Use the Paste Special "Multiply" trick to make fast, static modifications to a column without cluttering your workbook with formula columns.

Disclaimer:
The documents and templates provided on this page are for informational and illustrative purposes only. They do not constitute professional, legal, or financial advice, and should not be relied upon as such. Because individual circumstances and regulatory requirements vary, these materials may not be suitable for your specific needs. We recommend consulting with a qualified professional before adapting or using any of these examples for official or commercial purposes.