ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Hard return (https://www.excelbanter.com/excel-worksheet-functions/146979-hard-return.html)

ttribble

Hard return
 
Does any one out there know how to remove a lot of hard returns from multiple
cells

Gord Dibben

Hard return
 
Usually EditReplace works on the selection if the hard return is generate by
Alt + Enter in a cell.

What: CTRL + j

With: nothing

Replace all.

If generated by CHAR(10) in a formula, copypaste specialvalues first.


Gord Dibben MS Excel MVP

On Mon, 18 Jun 2007 17:31:01 -0700, ttribble
wrote:

Does any one out there know how to remove a lot of hard returns from multiple
cells



Rick Rothstein \(MVP - VB\)

Hard return
 
Does any one out there know how to remove a lot of
hard returns from multiple cells


You could run a macro similar to this (change the indicated range as
needed)....

Dim C As Range
For Each C In Range("b1:f3")
C.Value = Replace(C.Value, vbLf, " ")
Next

and then save the worksheet afterwards. The above macro removes each Line
Feed (what you are calling a "hard return") and replaces them with a single
blank space.

Rick


Dave Peterson

Hard return
 
Or replace it with a space character?

(just in case <vbg)

Gord Dibben wrote:

Usually EditReplace works on the selection if the hard return is generate by
Alt + Enter in a cell.

What: CTRL + j

With: nothing

Replace all.

If generated by CHAR(10) in a formula, copypaste specialvalues first.

Gord Dibben MS Excel MVP

On Mon, 18 Jun 2007 17:31:01 -0700, ttribble
wrote:

Does any one out there know how to remove a lot of hard returns from multiple
cells


--

Dave Peterson

Gord Dibben

Hard return
 
I just never remember to add that piece of info<g

Thanks, Gord

On Mon, 18 Jun 2007 19:57:14 -0500, Dave Peterson
wrote:

Or replace it with a space character?

(just in case <vbg)

Gord Dibben wrote:

Usually EditReplace works on the selection if the hard return is generate by
Alt + Enter in a cell.

What: CTRL + j

With: nothing

Replace all.

If generated by CHAR(10) in a formula, copypaste specialvalues first.

Gord Dibben MS Excel MVP

On Mon, 18 Jun 2007 17:31:01 -0700, ttribble
wrote:

Does any one out there know how to remove a lot of hard returns from multiple
cells




All times are GMT +1. The time now is 10:11 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com