How to remove non-printable characters in Excel?

In this lesson, you will learn how to remove non-printable characters in Excel with the clean and substitute functions.

It may happen that data copied from external websites will be pasted with non-printable characters. This lesson lets you clean up your spreadsheet. You can’t print such characters. It looks really unprofessional.

How to identify if cleaning is needed

To determine if cleaning of non-printable characters in Excel is necessary, you should examine your data for the presence of any non-printable characters. Some common symptoms of the presence of non-printable characters in your data include:

  1. Extra spaces in data: If you notice extra spaces in your data, it may be a sign that non-printable characters such as carriage returns or line feeds are present.
  2. Incorrect formatting: If your data is not formatting correctly, such as when it’s spread across multiple lines instead of being on a single line, it may be a sign that non-printable characters are present.
  3. Incorrect sorting: If your data is not sorting correctly, it may be a sign that non-printable characters are present. For example, if data that should be sorted together is separated by non-printable characters, it will not sort correctly.
  4. Incorrect data analysis: If your data is not providing accurate results when you perform analysis, it may be a sign that non-printable characters are present. For example, if data that should be treated as a single value is separated by non-printable characters, it will not be analyzed correctly.
See also  Counting unique values in pivot table

You can check whether cell cleaning is needed by using this formula for checking:

=IF(CLEAN(A1)=A1,”Cleaning NOT needed”,”Cleaning is needed”)

The formula will indicate if cleaning is required for your cell.

How to remove non printable characters

Using CLEAN function

To remove non-printable characters, use the CLEAN function. Syntax is:

=CLEAN(text)

You remove non-printable characters. You can also use the address of a cell phone. The syntax in that condition is:

=CLEAN(A1) for a single cell.

or

=CLEAN(A1:B10) for the whole range of cells

Using TRIM function

The TRIM function removes leading and trailing spaces from text. However, it does not remove non-printable characters such as carriage returns, line feeds, or tab characters. To remove these characters, you can use the TRIM function in combination with the SUBSTITUTE function.

Example: To remove all non-printable characters from cell A1, you can use the following formula: =TRIM(SUBSTITUTE(A1, CHAR(9), ” “))

Using SUBSTITUTE function

The SUBSTITUTE function replaces specified characters in text with other characters. In this case, you can use it to replace non-printable characters with a space.

Example: To remove all non-printable characters from cell A1, you can use the following formula: =SUBSTITUTE(A1, CHAR(9), ” “)

How to remove spaces

Removing of extra spaces using Substitute formula

The Substitute function can also be used to remove redundant spaces.

Use the already known scheme. Replace unnecessary spaces with nothing. This will remove extra spaces.

The Substitute formula you will use is =SUBSTITUTE(A1, “”, “”)

This formula removed spaces from cell A1.

Removing extra spaces with Find and Select

Find and Select is an Excel feature that can help you. Using Find and Select you can remove excess spaces.

See also  Survival Analysis in Excel

Go to Ribbon> Home > Find and Select > Replace

In the Find what field, enter a space. Do not enter anything in the Replace with field.

Click Replace All to remove spaces from your worksheet.

After that, you will be able to print as expected.