View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
rmellison rmellison is offline
external usenet poster
 
Posts: 8
Default Find and replace # with new line in a cell.

Works superbly. Thanks.

"Carim" wrote:

Hi,

Select a range and then run macro ...

Sub Macro1()
Dim cell As Range
For Each cell In Selection
Cells.Find(What:="#", After:=cell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:=False) _
.Activate
cell.Replace What:="#", Replacement:=Chr(10), LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False
Next cell
Range("A1").Select
End Sub

HTH