Hello,
I have many cells where data is broken up into many lines; some of those lines are blank. Is there a VB function or formula to remove blank line breaks in Excel cells, or all line breaks?
Many thanks!
Hello,
I have many cells where data is broken up into many lines; some of those lines are blank. Is there a VB function or formula to remove blank line breaks in Excel cells, or all line breaks?
Many thanks!
Substitute in a cell for linefeed seems to work - =Substitute(A1, CHAR(10), "")
There is a detailed tutorial on the subject called Excel VBA: How To Delete Rows, by Colin Legg that should cover all the areas for you.
Hope it helps...