Results 1 to 4 of 4

Thread: Short cut to merge cells in Microsoft Excel

  1. #1
    Join Date
    Nov 2009
    Posts
    68

    Short cut to merge cells in Microsoft Excel

    I have just recently started to work on Microsoft Excel. I am not very used to computer and this is my first experience of using Microsoft Office. I am finding a bit difficult to grasp MS-Excel. I have been assigned a work which required merging of Cells in Excel. I have heard there is a shortcut to achieve the merging of cells in Excel. What is the Shortcut to do that? Help me.

  2. #2
    Join Date
    May 2008
    Posts
    4,345

    Re: Short cut to merge cells in Microsoft Excel

    Even I was confused when I started to use Microsoft excel. My job profile required a lot of updating and adding entries using Microsoft excel. This was quite tedious process. Even I had to edit and do merging of cells in Microsoft Excel. You can create a macro that has shortcut key defined by you. This will help you to perform merging of cells easily.

    Code:
    sub macroMergeCells()
    Selection.MergeCells = True
    End sub
    Last edited by JonathanD; 24-11-2009 at 06:17 AM.

  3. #3
    Join Date
    Jan 2008
    Posts
    3,755

    Re: Short cut to merge cells in Microsoft Excel

    I know how to merge cells in Microsoft Office 2003. The Alt + M keys can be use simultaneously to merge the excel cells together. Go to menu bar and select Tools, now select customize. At the top of the screen right click on merge and center icon of the toolbar. Click on the Image and Text. Once done with it then close the window. Now the Alt+M key must work as a keyboard shortcut for you.

  4. #4
    Join Date
    May 2008
    Posts
    4,831

    Re: Short cut to merge cells in Microsoft Excel

    Firstly, I would like to inform you that excel does not consists of any shortcut to merge cells. The only was is by making use of user created macro. Here is a macro to be used to merge the selected cells:
    Code:
    Sub MCells()
        Selection.Merge
    End Sub
    Now assign a shortcut key from your keyboard. And this will enable you to use the shortcut key to merge cells. A macro that will help you to merge as well as center tool is:
    Code:
    Sub MCells1()
        With Selection
            .HorizontalAlignment = xlCenter
            .Merge
        End With
    End Sub
    Thus, using macro we can create user defined shortcut keys from keyboard in Microsoft excel.

Similar Threads

  1. Ignoring ranks when concatenating cells in Microsoft Excel
    By New!life in forum MS Office Support
    Replies: 2
    Last Post: 23-02-2012, 02:10 PM
  2. Replies: 2
    Last Post: 01-02-2012, 02:08 PM
  3. How to renumber cells in Microsoft Excel
    By Weslee in forum MS Office Support
    Replies: 2
    Last Post: 24-01-2012, 05:25 PM
  4. Replies: 3
    Last Post: 11-01-2012, 05:59 PM
  5. How to Manipulate cells in Microsoft Excel 2007
    By Deepest BLUE in forum Windows Software
    Replies: 3
    Last Post: 27-11-2009, 02:48 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,448,998.15480 seconds with 17 queries