Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
BeSmart
 
Posts: n/a
Default Icon for "Wrap" and for "Centre Across Selection"

Hi
Can anyone tell me how to get an icon on the excel toolbar for the "Wrap
text" function and another icon for the "Centre across selection" function in
excel?

Having these functions as icons will help my users format spreadsheets
faster and it will stop them from using the "merge & centre" icon (which I'll
be taking off the standard formatting toolbar).

I can't understand why these functions weren't standard icons in the first
place??
Any help would be greatly apprecriated
Regards
BeSmart
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron de Bruin
 
Posts: n/a
Default Icon for "Wrap" and for "Centre Across Selection"

Hi BeSmart

ToolsCustomizeCommands

You can drag the command to any toolbar if it is in the list ?
If not you must create your own macro to do it.


--
Regards Ron de Bruin
http://www.rondebruin.nl


"BeSmart" wrote in message ...
Hi
Can anyone tell me how to get an icon on the excel toolbar for the "Wrap
text" function and another icon for the "Centre across selection" function in
excel?

Having these functions as icons will help my users format spreadsheets
faster and it will stop them from using the "merge & centre" icon (which I'll
be taking off the standard formatting toolbar).

I can't understand why these functions weren't standard icons in the first
place??
Any help would be greatly apprecriated
Regards
BeSmart



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben
 
Posts: n/a
Default Icon for "Wrap" and for "Centre Across Selection"

Neither of these are in the list AFAIK

Macros it is...........

Sub TOGGLECENTERACROSS()
With Selection
If .HorizontalAlignment = xlCenterAcrossSelection Then
.HorizontalAlignment = xlGeneral
Else
Selection.HorizontalAlignment = xlCenterAcrossSelection
End If
End With
End Sub

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


Gord Dibben Excel MVP

On Wed, 16 Nov 2005 09:30:28 +0100, "Ron de Bruin"
wrote:

Hi BeSmart

ToolsCustomizeCommands

You can drag the command to any toolbar if it is in the list ?
If not you must create your own macro to do it.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 05:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"