IS THERE A TOOLBAR ICON FOR THE WRAP TEXT FUNCTION?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
when you want to start wrapping the text press Alt and enter. This will
start a new line in the cell and the cell is set to wrap text
--
John
MOS Master Instructor Office 2000, 2002 & 2003
Please reply & rate any replies you get

Ice Hockey rules (especially the Wightlink Raiders)
 
Why don't you just press alt + enter when you want a new line? Or is this
data that is pasted into the cell(s) that you want top wrap later? Then use
a macro, put it in your personal.xls and attach it to a custom button
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top