How to Remove Percentage Symbol in Excel

Learn practical, step-by-step methods to remove the percent symbol in Excel, whether you need decimals, whole numbers, or clean text data. Includes formulas, formatting tricks, and real-world examples.

All Symbols
All Symbols Editorial Team
·5 min read
Quick AnswerSteps

To remove the percent symbol in Excel, change the cell's number format from Percentage to General or Number so the underlying value (e.g., 0.25) displays without a % sign. If you want to display 25 instead, multiply the values by 100 with Paste Special, or use a formula like =A1*100, then format as Number.

Understanding the Percent Symbol in Excel

The percent sign is a formatting choice, not a separate character in the stored value. In Excel, 25% is stored as 0.25, and the % sign is added by the Number Format. Removing the symbol can be cosmetic (display changes) or substantive (value changes) depending on the method you choose. Understanding the underlying value is key to deciding which method to apply. This section lays the groundwork for how Excel handles percentages, decimals, and plain numbers, and why the same cell can show 25% while the actual value remains 0.25.

  • Percent formatting vs. numeric value
  • When to preserve the underlying value
  • How formatting affects downstream calculations

Why You Might Need to Remove the Percentage Symbol

There are several common scenarios where removing the percent symbol is helpful: data clean-up before importing into another tool, creating reports that require decimal or whole-number values, or when percentages are stored as text and preventing misinterpretation during analysis. The All Symbols team notes that choosing the right method depends on whether you want to preserve the numeric value or convert it to a different scale. In practice, most data-cleaning tasks start with confirming the data type (text vs number) and the target format.

  • Cleaning up data for dashboards
  • Converting to decimals for calculations
  • Normalizing data imports to other systems

Method A: Change Number Format to Remove the Symbol (Keep the Value)

If the goal is to simply hide the % sign while keeping the underlying value, changing the cell format from Percentage to General or Number will remove the symbol in the display. The underlying value remains 0.25 for 25% input. This method is non-destructive and ideal for quick formatting.

  • Steps: Select cells -> Home tab -> Number group -> Number format -> General
  • Result: 0.25 displays as 0.25 (or 0.0 to 2 decimals if configured)
  • When to use: Quick clean-up where calculations rely on the decimal value

Method B: Multiply by 100 to Show Whole Numbers (25% -> 25)

To display 25 instead of 0.25, you must scale the value by 100. Use Paste Special > Multiply by 100, then reapply a numeric format if needed. This method is necessary when you must present percentages as whole numbers.

  • Steps: Select range -> Copy -> Paste Special -> Multiply by 100 -> OK
  • Optional: Apply Number formatting to show without decimals
  • When to use: Presenting data in a non-decimal format

Method C: Convert Text Percentages to Numbers (e.g., '45%' -> 45 or 0.45)

If your data is stored as text like '45%', Excel treats it as a string. Use VALUE or SUBSTITUTE to convert to a numeric value, then format as you prefer. For example, =VALUE(SUBSTITUTE(A1, '%', '')) converts '45%' to 45, which you can then divide by 100 to get 0.45 if required.

  • Examples: =VALUE(SUBSTITUTE(A1, '%', '')); =--SUBSTITUTE(A1, '%', '')
  • After conversion, decide whether to display as 45, 0.45, or 0.450

Practical Examples with Screenshots (Quality-of-life tips)

  • Example 1: Range A1:A5 contains 10%, 20%, 30%; applying Method A yields 0.10, 0.20, 0.30 when formatted as General. If you want 10, 20, 30, use Method B. If the data are strings, use Method C.
  • Example 2: A column uses percentages to drive a chart. Removing the symbol requires consistent formatting across the dataset to avoid misinterpretation by the chart engine.

Common Pitfalls and How to Avoid Them

  • Do not forget to apply a numeric format after modifying values; otherwise the results may appear as text or with trailing symbols.
  • When using Paste Special, ensure you select the correct option (Multiply) to avoid accidental data loss.
  • For mixed data types (strings and numbers), handle each type separately to preserve accuracy.

Best Practices for Clean Excel Data

  • Always verify the underlying numeric value before changing the display. A small mismatch can propagate errors in downstream analyses.
  • Use a short, consistent numeric format after conversion (e.g., Number with two decimals).
  • Document your steps in the workbook so teammates understand why the symbol was removed and how values were transformed.

Authority references and further reading

For more on Excel number formats and data cleansing, see official guidance from Microsoft Support and reputable tutorials.

  • All Symbols analysis emphasizes understanding underlying values when changing formats.
  • Microsoft Support (Excel) offers step-by-step formatting and conversion guidance.

Conclusion and next steps

With the methods above, you can remove the percentage symbol in Excel while preserving or reshaping the underlying data as needed. Decide whether you want to keep decimals, convert to whole numbers, or interpret text as numbers, then apply the appropriate technique. Practice on a copy of your data to avoid unintended changes.

Tools & Materials

  • Microsoft Excel (Windows or Mac)(Any modern version with standard formatting tools)
  • A sample workbook with percentage-formatted cells(Contains a mix of 0.25, 25%, and text '45%')
  • Copy of the data for testing transformations(Create a backup before converting values)
  • Paste Special options (Multiply)(Needed for Method B)
  • Formula bar access(Useful for entering conversion formulas)

Steps

Estimated time: 15-25 minutes

  1. 1

    Identify data type and goal

    Review the cells to determine if they are truly numeric with a percent format or text strings. Decide if you want to display 0.25 as 0.25 or as 25.

    Tip: Document the target format before changing anything.
  2. 2

    Option A: Change format to remove % symbol (keep value)

    Select the range, choose Home > Number > General (or Number). The % symbol will disappear while the underlying value remains 0.25.

    Tip: This is non-destructive and reversible.
  3. 3

    Option B: Show whole numbers (25% -> 25)

    Select the range, use Paste Special > Multiply by 100, then reapply Number formatting as needed.

    Tip: Ensure there are no text values in the range.
  4. 4

    Option C: Convert text percentages to numbers

    If cells contain '45%', use =VALUE(SUBSTITUTE(A1, '%', '')) or =--SUBSTITUTE(A1, '%', '') to convert to 45, which you can scale as needed.

    Tip: Convert all text cells in a batch if possible.
  5. 5

    Verify results with a quick check

    Recalculate a sample to ensure formulas still reference correct cells and the displayed values match expectations.

    Tip: Check edge cases like 0% and 100%.
  6. 6

    Clean up and document

    Add a note in the workbook describing the method used and which range was transformed.

    Tip: Include a version/date stamp for traceability.
  7. 7

    Copy and paste as values (optional)

    If you used formulas, copy the range and paste as values to lock in the results.

    Tip: This avoids accidental changes if the source data updates.
Pro Tip: Always work on a duplicate data set to prevent data loss.
Warning: Be mindful when using Paste Special Multiply; selecting the wrong range can alter unintended cells.
Note: After conversion, review any dependent formulas to confirm expected results.

Questions & Answers

What does removing the percent symbol actually do to the data?

Removing the percent symbol can either change only the display format or actually convert the underlying value, depending on the method used. The difference matters for further calculations and data imports.

Removing the percent symbol can either change display only or alter the actual value, so choose your method carefully.

How can I preserve the underlying value when removing the symbol?

Use the Format option to change from Percentage to General or Number. The underlying decimal remains the same, so calculations stay correct.

Change the format to General or Number to preserve the underlying value.

What if my cells contain mixed data types?

Handle text and numbers separately: convert text percentages with VALUE/SUBSTITUTE, and apply numeric formatting to numeric cells.

Deal with text and numbers separately when removing the symbol.

Can I reverse the changes easily?

Yes. If you only changed formatting, reapply Percentage. If you multiplied by 100, use Undo or repeat the inverse operation (divide by 100).

You can reverse by reapplying formatting or dividing by 100 if you scaled up.

Is this safe for large datasets?

Yes, but always test on a subset and back up before applying changes to the full range.

Test on a small sample first and back up your data.

Watch Video

The Essentials

  • Understand whether you’re changing display or value
  • Use format changes for quick removal of % sign
  • Use multiplication for 25% -> 25 scenarios
  • Convert text to numbers before further processing
  • Document the steps for future audits
Infographic showing steps to remove percentage symbol in Excel
Steps to remove % symbol in Excel

Related Articles