View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
EMZAM EMZAM is offline
external usenet poster
 
Posts: 3
Default Formatting Text in one cell vertically - #2

Using answer below for Cell A1.
How can I alter the formula for as many cells as I like, say 100 cells
vertically?

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$A$1" Then

Target.Value = Replace(Target.Value, " ", Chr(10))
End If
End Sub