View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default IS THERE A TOOLBAR ICON FOR THE WRAP TEXT FUNCTION?

No toolbar Icon but a macro assigned to a button is possible.

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


Gord Dibben MS Excel MVP

On Tue, 12 Jun 2007 10:42:00 -0700, cac wrote:

In EXCEL2003, is there a way to add a toolbar icon for the wrap text
function? Now I must click FORMAT CELLS, Allignment, Text Control, Wrap
Text. There must be an easier way to accomplish this function that I use
nearly every day!