ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Icon for "Wrap" and for "Centre Across Selection" (https://www.excelbanter.com/excel-worksheet-functions/55675-icon-wrap-centre-across-selection.html)

BeSmart

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

Ron de Bruin

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




Gord Dibben

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.




All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com