Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Creating a Center Across Selection Button.

Creating a Center Across Selection Button

Written by Allen Wyatt (last updated August 6, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365


2

Excel includes a handy tool that you can use to merge cells and center whatever is within those merged cells. (This tool is available on the Home tab of the ribbon, in the Alignment group.) The problem with this tool is that it merges prior to centering, and you might not want any merged cells in your worksheet.

Fortunately, Excel includes the capability of centering information across a range of cells, without merging them. There is no native tool on any ribbon tab that can perform this task. You can, however, display the Alignment tab of the Format Cells dialog box and use the Horizontal drop-down list to choose Center Across Selection. Doing this frequently within a worksheet can be a pain, but you can create your own tool to center information across whatever cells you've selected:

Sub CenterAcrossColumns()
    With Selection
        .HorizontalAlignment = xlCenterAcrossSelection
        .MergeCells = False
    End With
End Sub

Once you have the macro, you can assign it to a shortcut key or the Quick Access Toolbar.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12183) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Creating a Center Across Selection Button.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Deleting a Footer

Excel allows you to add footers to the worksheets you create. If you decide you don't need a footer any more, here's how ...

Discover More

Reverse Numbered Lists

Adding numbered lists to your document is a snap; Word provides tools to add them immediately. What Word doesn't do is ...

Discover More

Finding Default Shortcut Keys

There are scores of shortcut keys defined in Word. If you want to discover what all those shortcut keys are, here are a ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Retaining Formatting After a Paste Multiply

You can use the Paste Special feature in Excel to multiply the values in a range of cells. If you don't want Excel to ...

Discover More

Converting From Numbers to Text

If you have a range of numeric values in your worksheet, you may want to change them from numbers to text values. Here's ...

Discover More

Extra Blank Lines in Some Cells

When adjusting column width, Excel can add an extra line to some cells. This behavior seems to be related to the text ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 7 - 7?

2023-01-29 12:18:58

J. Woolley

As with most user macros, the Tip's CenterAcrossColumns macro does not support Undo. After running the macro, pressing Ctrl+Z will not restore the selection's previous horizontal alignment. On the other hand, My Excel Toolbox includes a CenterAcrossSelection macro with support for both Undo (Ctrl+Z) and Redo/Repeat (Ctrl+Y). It can also be assigned to the Quick Access Toolbar (QAT). Here is an abbreviated version:

Public Sub CenterAcrossSelection()
    CenterAcross_Do Action:=0 ' Do
End Sub

Private Sub CenterAcross_Do(Action As Integer)
    Static WB As Workbook, WS As Worksheet, R As Range, HA As Variant
    Dim sProc As String
    Const sName As String = "CenterAcross"
    If Action = 0 Then ' Do
        Set WB = ActiveWorkbook
        Set WS = ActiveSheet
        Set R = Selection
        HA = R.HorizontalAlignment
    Else ' Undo or Redo
        WB.Activate
        WS.Activate
        R.Select
    End If
    sProc = ThisWorkbook.Name & "!" & sName
    If Action >= 0 Then ' Do or Redo
        R.HorizontalAlignment = xlHAlignCenterAcrossSelection
        Application.OnUndo ("Undo " & sName), (sProc & "_Undo")
    Else ' Undo
        R.HorizontalAlignment = HA
        Application.OnRepeat ("Redo " & sName), (sProc & "_Redo")
    End If
End Sub

Private Sub CenterAcross_Undo()
    CenterAcross_Do Action:=-1 ' Undo
End Sub

Private Sub CenterAcross_Redo()
    CenterAcross_Do Action:=1 ' Redo
End Sub

See https://sites.google.com/view/MyExcelToolbox


2022-08-06 10:21:10

J. Woolley

This is only useful if your selection is contiguous with multiple adjacent cells in the same row but only one non-blank cell in that row. The selection can include more than one row, but each row should satisfy the previous condition. For each such row, the centering begins with the non-blank cell.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.