View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default Is there a wrap text button available in excel

Not that I know of.

I have this macro in my Personal.xls and assigned it to a button.

Toggles wrap text on/off.

Sub Wrap_Text()
With Selection
.WrapText = Not .WrapText
End With
End Sub


Gord Dibben MS Excel MVP

On Thu, 8 Jun 2006 12:03:02 -0700, RITCHIE
wrote: