Microsoft
Software
Hardware
Network
Question : Replace Line breaks with spaces using VB in Excel
Hi I need some help with a formula to run in excel that will find and replace all line breaks in all cells within a column. Here is a typical entry:
Due to their sizes and outputs, these food mills are designed
for small quantities and fit onto pans smaller than 8 ?” in
diameter. They are made of stainless steel and come with three
cutting plates. The 7 ?” food mill output is approximately 1 Lb
per minute and 1.5 Lbs for the 9 1/2”.
The line breaks need to be eliminated to facilitate the creation of a CSV file that will not crash an application.
Appreciate all help!!!
Answer : Replace Line breaks with spaces using VB in Excel
You might have two different types of line breaks.
Try this
Sub zap()
ActiveSheet.[A:A].Replace Chr(13) & Chr(10), " "
ActiveSheet.[A:A].Replace Chr(10), " "
ActiveSheet.[A:A].Replace Chr(13), " "
End Sub
Random Solutions
Windows 7 printing on Citrix Windows Server 2003
Office 2003 and 2007 printing problem
Record the type SQL 2005 and C#
Help configuring SonicWall Sonicpoint wireless access
EVA4400 Command View detects array is inoperative
Date Difference
Radio Button Value
Hyper-V machines in Failover Cluster: can Live Migrate, but cannot Move or Quick Move between cluster nodes.
Outlook 2007 -- ToDo List WINDOW
Get all sheets row2 till end of data to one sheet. One after the other.