Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I use "Center across selection" and almost never "Merge cells", which is
generally a bad choice (across columns anyway). I wish to add an icon or otherwsie modify the "Merge Cells" icon through the toolbars "customization" process. but unfortunately I cannot find "center across selection" amonst the "commands- format"choices. Which means I have to do my "center cross selctiion) always via the menu.... How do I add / modify an icon in my "Formatting" toolbar? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One option is to record a macro and then assign it to a new button on a
toolbar... See for detailed instrucitons... See http://www.ehow.com/how_2456_record-excel-macro.html http://www.mrexcel.com/tip068.shtml "Elardus" wrote: I use "Center across selection" and almost never "Merge cells", which is generally a bad choice (across columns anyway). I wish to add an icon or otherwsie modify the "Merge Cells" icon through the toolbars "customization" process. but unfortunately I cannot find "center across selection" amonst the "commands- format"choices. Which means I have to do my "center cross selctiion) always via the menu.... How do I add / modify an icon in my "Formatting" toolbar? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub TOGGLECENTERACROSS()
With Selection If .HorizontalAlignment = xlCenterAcrossSelection Then .HorizontalAlignment = xlGeneral Else Selection.HorizontalAlignment = xlCenterAcrossSelection End If End With End Sub Gord Dibben MS Excel MVP On Tue, 4 Nov 2008 18:06:01 -0800, Elardus wrote: I use "Center across selection" and almost never "Merge cells", which is generally a bad choice (across columns anyway). I wish to add an icon or otherwsie modify the "Merge Cells" icon through the toolbars "customization" process. but unfortunately I cannot find "center across selection" amonst the "commands- format"choices. Which means I have to do my "center cross selctiion) always via the menu.... How do I add / modify an icon in my "Formatting" toolbar? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vertical - Center Across Selection | Excel Discussion (Misc queries) | |||
center across selection formatting | Excel Discussion (Misc queries) | |||
center across the selection | New Users to Excel | |||
Center Across Selection Vertically Help. I am trying to center te. | Excel Discussion (Misc queries) | |||
How do I UN Center a Selection | Excel Discussion (Misc queries) |