How to search for newline or linebreak characters in Excel?

19

6

I've imported some data into Excel (from a text file) and it contains some sort of newline characters. It looks like this initially: newline characters

If I hit F2 (to edit) then Enter (to save changes) on each of the cells with a newline (without actually editing anything), Excel automatically changes the layout to look like this: enter image description here

I don't want these newlines characters here, as it messes up data processing further down the track. How can I do a search for these to detect more of them? The usual search function doesn't accept an enter character as a search character.

Highly Irregular

Posted 2011-12-21T02:02:23.697

Reputation: 2 443

1

Have a look at this too: 3 ways to remove carriage returns in Excel: formulas, VBA macro, find&replace dialog

– danicotra – 2017-06-10T08:51:36.877

Are you able to post a sample workbook somewhere online? Removing linebreaks is possible using Find, or VBA, but it would be good to see exactly what the characters are, and test the replacement works as you desire

– brettdj – 2011-12-21T02:59:42.963

If you could provide an answer for finding the linebreaks that can be inserted by typing alt-Enter while editing a cell, I think that would solve it. If not, I might be able to find a way to put the worksheet online later. Thanks! – Highly Irregular – 2011-12-21T03:24:59.130

Answers

26

In Excel the standard line break Alt + Enter character is ASCII 10. From the look of your screenshot it appears there is another character, probably ASCII 13.

To find these, in the standard Find (or Replace) dialog, in the Find What field, use the standard method of entering ASCII character codes: hold down Alt and type (on the numeric keypad) the character code, i.e., Alt 0010 for just the line break, or Alt 0013 (release Alt and press again) Alt 0010

If that extra character is not a ASCII 13, you can use the function =Code(AString) to get the code of the left most character of a string.

chris neilsen

Posted 2011-12-21T02:02:23.697

Reputation: 4 005

14

If you press Ctrl + J while in the Find dialog, you will be able to search for those characters.

Wasabi

Posted 2011-12-21T02:02:23.697

Reputation: 151

1Awesome. I am on Parallels on OS X and Alt key combinations don't seem to work. This did the trick! – n1000 – 2015-12-12T14:23:45.673

I see the cursor changes, but what does this do exactly? – Louis – 2013-03-16T00:44:49.093

1+1. Didn't know this. I always used to do a num lock and then alt+0010; this is a quick thing. @Louis: the cursor change was because a new line char[chr(10)] was inserted in the field. – Fr0zenFyr – 2013-09-17T04:18:05.367

10

If you want to do this with a formula, it would be FIND(A3,CHAR(10),...

This is useful if trying to break apart an address block.

Dan Troxell

Posted 2011-12-21T02:02:23.697

Reputation: 101

4

The mid() function can parse through multiple lines.

Let's say this address is in cell A1:

Google, Inc.
1600 Amphitheatre Pkwy
Mountain View, CA 94043


Let's grab the street address on the second line.

The first step is determine the position number of the two return characters.

The first return character is found at '13' with this:

=SEARCH(CHAR(10),A1)


The second return character is found at '36' with this:

=SEARCH(CHAR(10),A1,SEARCH(CHAR(10),A1)+1)



Now the second step. We need to return our address text between the two character counts 13 & 36.

Here the formula is nested together:

=MID(A1,SEARCH(CHAR(10),A1),SEARCH(CHAR(10),A1,SEARCH(CHAR(10),A1)+1)-SEARCH(CHAR(10),A1))

Brad Smith

Posted 2011-12-21T02:02:23.697

Reputation: 144