How to Remove Signs from Numbers in Excel – 6 Methods

 

The sample dataset showcases total Sales Amount, Product Code, and Quantity Code. There are unwanted signs in the Quantity Code column. To delete them:

Remove Sign from Numbers in Excel


Method 1 – Using the Find & Replace Feature to Remove Signs from Numbers

Steps:

  • Press Ctrl+H to open the “Find and Replace” window.

Use Find and Replace Feature to Remove Sign from Numbers in Excel

  • Enter the hash mark(#) in “Find what”.
  • Click “Replace All”.

Use Find and Replace Feature to Remove Sign from Numbers in Excel

  • A confirmation window will be displayed. Click OK.

  • This is the output.

Use Find and Replace Feature to Remove Sign from Numbers in Excel

Note: If you have different types of signs, enter the sign in “Find what” to remove it.

Read More: How to Remove Pound Sign in Excel


Method 2 – Utilizing the Format Cells Option to Remove Signs from Numbers

To remove the dash sign () in column E:

Steps:

  • Select E5:E14 and right-click.

Utilize Format Cells Option to Remove Sign from Numbers in Excel

  • Choose “Format cells”.

Utilize Format Cells Option to Remove Sign from Numbers in Excel

  • In the new window, select “Number” and choose a format.
  • Click OK.

Utilize Format Cells Option to Remove Sign from Numbers in Excel

This is the output.

Limitations: The format cells feature removes signs like the dash  (-) and dollar ($). To remove other signs, use formulas.

Read More: How to Remove Currency Symbol in Excel


Method 3 – Using the SUBSTITUTE Function to Remove Signs from Numbers

3.1 Remove a Single Sign

Use the SUBSTITUTE function to remove signs:

Steps:

  • Choose a cell. Here, G5.
  • Enter the formula in the cell:
=SUBSTITUTE(E5, "#", "")

Where,

The SUBSTITUTE function will find a sign or string and replace it with another string.

Use SUBSTITUTE Function to Remove Sign from Numbers in Excel

  • Press Enter  button to see the result.
  • Drag down the Fill Handle to see the result in the rest of the cells.

Use SUBSTITUTE Function to Remove Sign from Numbers in Excel

This is the output.

Use SUBSTITUTE Function to Remove Sign from Numbers in Excel


3.2 Remove Multiple signs

There are different signs at the beginning and in the middle of numbers in the Quantity Code column. To delete those signs:

Use SUBSTITUTE Function to Remove Sign from Numbers in Excel

Steps:

  • Choose a cell, here G5.
  • Enter the formula:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(E5, "#",""), "/", ""), "\", "")

Use SUBSTITUTE Function to Remove Sign from Numbers in Excel

  • Press Enter to see the result.
  • Drag down the Fill Handle to see the result in the rest of the cells.

This is the output.

Read More: How to Remove Plus Sign in Excel


Method 4 – Using the Flash Fill Feature to Remove Signs from Numbers

Steps:

  • Create a new column.
  • Enter at least two numbers from the list to enable the fill handle.

Flash Fill Feature to Remove Sign from Numbers in Excel

  • Selecting both cells drag down to fill Handle.
  • Click the “Fill” icon and choose “Flash Fill” option.

Flash Fill Feature to Remove Sign from Numbers in Excel

This is the output.

Flash Fill Feature to Remove Sign from Numbers in Excel


Method 5 – Combining the SUBSTITUTE, CHAR, CODE, and LEFT Functions to Remove Signs from Numbers

Use the SUBSTITUTE, CHAR, CODE, and LEFT functions:

Steps:

  • Choose a cell, here G5.
  • Enter the formula:
=SUBSTITUTE(E5,CHAR(CODE(LEFT(E5))),"")

Where,

  • The LEFT function will extract numbers from the selected cell (E5).
  • The CODE function will return a numeric code from the given string.
  • The CHAR function identifies characters based on the number.
  • The SUBSTITUTE function will find a sign or string and replace it with another string.

Combine SUBSTITUTE, CHAR, CODE, and LEFT Function to Remove Sign from Numbers in Excel

  • Press Enter to see the result.
  • Drag down the Fill Handle to see the result in the rest of the cells.

This is the output.


Method 6 – Merge the RIGHT and LEN Functions to Remove Signs from Numbers in Excel

Combine the RIGHT and LEN functions.

Steps:

  • Choose a cell, here G5.
  • Enter the formula:
= RIGHT(E5,LEN(E5)-1)

Where,

  • The LEN function returns the length of a given string.
  • The RIGHT function extracts a given number of characters from the right side of a string. Here (E5)-1 removes one character from the right side.

Combine RIGHT, LEN Function to Remove Sign from Numbers in Excel

  • Press Enter to see the result.
  • Drag down the Fill Handle to see the result in the rest of the cells.

  • This is the output.


Things to Remember

  • To remove the minus sign (), use the ABS() formula. In the bracket portion enter the cell number.
  • You can also use the VALUE function to delete the dollar sign($). It must be on the right side of the numbers.

Download Practice Workbook

Download the practice workbook.


 

Related Articles


<< Go Back to Remove Symbol in Excel | Excel Symbols | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Wasim Akram
Wasim Akram

Wasim Akram holds a BSc degree in Industrial and Production Engineering from Ahsanullah University of Science and Technology. Over the past 2 years, he has been actively contributing to the ExcelDemy project, where he has authored more than 150 articles. Now, he is working as an Excel VBA and Content Developer. He likes learning new things about Microsoft Office, especially Excel VBA, Power Query, Data Analysis, and Excel Statistics. He is also very interested in machine learning and... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo