Text Wrapping Command

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

Guest

Please help, I am unsure if there is a command that can be added to the
toolbar but if there is one for text wrapping in a cell or a keyboard shorcut
could somebody please tell me, thank you.
 
you can make a quick macro such as
Sub wrp()
With Selection
.WrapText = True
End With
End Sub

then add a macro button to the toolbar and assign this macro to it or
<tools><macros><options> and assign a keyboard shrortcut.
 
Or a toggle on/off macro.

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


Gord Dibben Excel MVP
 
Thanks BJ.

bj said:
you can make a quick macro such as
Sub wrp()
With Selection
.WrapText = True
End With
End Sub

then add a macro button to the toolbar and assign this macro to it or
<tools><macros><options> and assign a keyboard shrortcut.
 
Thank you Gord.

Gord Dibben said:
Or a toggle on/off macro.

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


Gord Dibben 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